Run actions on 3.10, lint on 3.9

This commit is contained in:
John Reese 2022-02-05 00:33:16 -08:00
parent 507253fe14
commit ee00f110af
1 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
os: [macOS-latest, ubuntu-latest, windows-latest]
steps:
@ -32,7 +32,6 @@ jobs:
run: make test
- name: Lint
run: make lint
if: ${{ matrix.python-version != '3.9' }}
- name: Coverage
run: codecov --token ${{ secrets.CODECOV_TOKEN }} --branch ${{ github.ref }}
continue-on-error: true