We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dca0ef9 commit 96faf64Copy full SHA for 96faf64
.github/workflows/ci.yaml
@@ -12,7 +12,7 @@ jobs:
12
test:
13
strategy:
14
matrix:
15
- python-version: [3.8, 3.9]
+ python-version: [3.9, "3.10"]
16
runs-on: ubuntu-latest
17
18
steps:
@@ -35,7 +35,7 @@ jobs:
35
poetry run coverage run -m --source=src pytest tests
36
poetry run coverage xml
37
- name: Report coverage using codecov
38
- if: github.event_name == 'push' && matrix.python-version == 3.8
+ if: github.event_name == 'push' && matrix.python-version == 3.9
39
uses: codecov/codecov-action@v3.1.4
40
with:
41
file: ./coverage.xml # optional
.gitignore
@@ -114,6 +114,5 @@ dmypy.json
114
.pyre/
115
116
.vscode/
117
-poetry.lock
118
119
.idea/
0 commit comments