Skip to content

Commit 1d5b83f

Browse files
committed
Add python v3.10 to the test suite
Version 3.10 has been out a while so lets make sure the tests pass for it.
1 parent b457fe8 commit 1d5b83f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.7, 3.8, 3.9]
15+
python-version: [3.7, 3.8, 3.9, 3.10]
1616

1717
steps:
1818
- uses: actions/checkout@v2
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
coverage run -m pytest -v && coverage xml
3131
- name: Upload coverage to Codecov
32-
if: ${{ matrix.python-version == '3.9' }}
32+
if: ${{ matrix.python-version == '3.10' }}
3333
uses: codecov/codecov-action@v1
3434
with:
3535
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)