Skip to content

Run tests and quality control #166

Run tests and quality control

Run tests and quality control #166

Workflow file for this run

name: Run tests and quality control
env:
TOX_PARALLEL_NO_SPINNER: 1
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '24 5 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox wheel
- name: Run tests and quality checks
run: |
tox run-parallel