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.
2 parents 541a63d + 06a3e03 commit 0e60f91Copy full SHA for 0e60f91
.github/workflows/test.yml
@@ -34,8 +34,7 @@ jobs:
34
strategy:
35
matrix:
36
py_version: ["3.7", "3.8", "3.9", "3.10"]
37
- os: [ubuntu-latest, windows-latest]
38
- runs-on: "${{ matrix.os }}"
+ runs-on: "ubuntu-latest"
39
steps:
40
- uses: actions/checkout@v2
41
- name: Install poetry
@@ -53,7 +52,7 @@ jobs:
53
52
run: poetry run coverage xml
54
- name: Upload coverage reports to Codecov with GitHub Action
55
uses: codecov/codecov-action@v3
56
- if: matrix.os == 'ubuntu-latest' && matrix.py_version == '3.9'
+ if: matrix.py_version == '3.9'
57
with:
58
token: ${{ secrets.CODECOV_TOKEN }}
59
fail_ci_if_error: false
0 commit comments