8000
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 38a74b4 commit b415ee6Copy full SHA for b415ee6
.github/workflows/main.yml
@@ -9,7 +9,7 @@ on:
9
jobs:
10
tests:
11
name: Python ${{ matrix.python-version }}
12
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.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 codecov tox
+ run: python -m pip install --upgrade tox
38
39
- name: Install tox-py
40
if: ${{ matrix.python-version == '3.6' }}
@@ -54,5 +54,8 @@ jobs:
54
tox -e base,dist,docs
55
56
- name: Upload coverage
57
- run: |
58
- codecov -e TOXENV,DJANGO
+ - uses: codecov/codecov-action@v3.1.0
+ with:
59
+ flags: unittests # optional
60
+ fail_ci_if_error: true # optional (default = false)
61
+ verbose: true # optional (default = false)
0 commit comments