Skip to content

Don't fail fast. Ignore py3.9 typing issue #22

Don't fail fast. Ignore py3.9 typing issue

Don't fail fast. Ignore py3.9 typing issue #22

Workflow file for this run

name: main
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install build tools
run: |
python -m pip install --upgrade pip pre-commit setuptools tox
- name: Run pre-commit
run: |
pre-commit run --all-files
- name: Run tox tests
run: |
tox