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 b48fa3c commit 73953e2Copy full SHA for 73953e2
.github/workflows/ci.yml
@@ -13,16 +13,16 @@ jobs:
13
max-parallel: 5
14
matrix:
15
python-version:
16
- - 3.7
17
- - 3.8
18
- - 3.9
+ - "3.9"
19
- "3.10"
20
- "3.11"
21
- - pypy-3.9
+ - "3.12"
+ - "3.13"
+ - "pypy3.9"
22
23
steps:
24
- uses: actions/checkout@v2
25
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
26
with:
27
python-version: ${{ matrix.python-version }}
28
- name: Install tox
@@ -35,6 +35,8 @@ jobs:
35
- name: Test with tox
36
run: |
37
tox --parallel 0
38
- - uses: codecov/codecov-action@v1
+ - uses: codecov/codecov-action@v5
39
40
- file: ./coverage.xml
+ token: ${{ secrets.CODECOV_TOKEN }}
41
+ files: ./coverage.xml
42
+ disable_search: true
0 commit comments