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 6845228 commit 38a74b4Copy full SHA for 38a74b4
.github/workflows/main.yml
@@ -9,7 +9,7 @@ on:
9
jobs:
10
tests:
11
name: Python ${{ matrix.python-version }}
12
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-20.04
13
14
strategy:
15
matrix:
@@ -34,7 +34,7 @@ jobs:
34
run: python -m pip install --upgrade pip setuptools virtualenv wheel
35
36
- name: Install dependencies
37
- run: python -m pip install --upgrade tox
+ run: python -m pip install --upgrade codecov tox
38
39
- name: Install tox-py
40
if: ${{ matrix.python-version == '3.6' }}
@@ -54,8 +54,5 @@ jobs:
54
tox -e base,dist,docs
55
56
- name: Upload coverage
57
- - uses: codecov/[email protected]
58
- with:
59
- flags: unittests # optional
60
- fail_ci_if_error: true # optional (default = false)
61
- verbose: true # optional (default = false)
+ run: |
+ codecov -e TOXENV,DJANGO
0 commit comments