We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5019b72 commit d9cd0d3Copy full SHA for d9cd0d3
.github/workflows/tests.yml
@@ -12,6 +12,10 @@ jobs:
12
python-version: ["3.6", "3.7", "3.8", "3.9"]
13
django: ["2.2", "3.0", "3.1"]
14
django-rest-framework: ["3.12", "master"]
15
+ env:
16
+ PYTHON: ${{ matrix.python-version }}
17
+ DJANGO: ${{ matrix.django }}
18
+ DJANGO_REST_FRAMEWORK: ${{ matrix.django-rest-framework }}
19
steps:
20
- uses: actions/checkout@v2
21
- name: Set up Python ${{ matrix.python-version }}
@@ -24,9 +28,10 @@ jobs:
24
28
pip install tox tox-gh-actions
25
29
- name: Test with tox
26
30
run: tox
27
- env:
- DJANGO: ${{ matrix.django }}
- DJANGO_REST_FRAMEWORK: ${{ matrix.django-rest-framework }}
31
+ - name: Upload coverage report
32
+ uses: codecov/codecov-action@v1
33
+ with:
34
+ env_vars: PYTHON,DJANGO,DJANGO_REST_FRAMEWORK
35
check:
36
name: Run check
37
runs-on: ubuntu-latest
0 commit comments