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 0badd16 commit 9421c8fCopy full SHA for 9421c8f
.github/workflows/tests.yml
@@ -1,4 +1,4 @@
1
-name: Tests
+name: CI
2
3
on:
4
push:
@@ -22,7 +22,6 @@ jobs:
22
pytest:
23
runs-on: ubuntu-latest
24
strategy:
25
- max-parallel: 4
26
matrix:
27
python-version:
28
- "3.7"
@@ -32,16 +31,15 @@ jobs:
32
31
- "2.2"
33
- "3.1"
34
steps:
35
- - uses: actions/checkout@v1
36
- name: Set up Python ${{ matrix.python-version }}
37
uses: actions/setup-python@v1
38
with:
39
python-version: ${{ matrix.python-version }}
+ - uses: actions/checkout@v1
40
- name: Install dependencies
41
run: |
42
python -m pip install --upgrade pip setuptools codecov
43
pip install django~=${{ matrix.django-version }}
44
- name: Test with pytest
45
run: python setup.py test
46
- - name: Codecov
47
- run: codecov
+ - run: codecov
0 commit comments