Skip to content

Commit 9421c8f

Browse files
committed
Simplify CI setup
1 parent 0badd16 commit 9421c8f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Tests
1+
name: CI
22

33
on:
44
push:
@@ -22,7 +22,6 @@ jobs:
2222
pytest:
2323
runs-on: ubuntu-latest
2424
strategy:
25-
max-parallel: 4
2625
matrix:
2726
python-version:
2827
- "3.7"
@@ -32,16 +31,15 @@ jobs:
3231
- "2.2"
3332
- "3.1"
3433
steps:
35-
- uses: actions/checkout@v1
3634
- name: Set up Python ${{ matrix.python-version }}
3735
uses: actions/setup-python@v1
3836
with:
3937
python-version: ${{ matrix.python-version }}
38+
- uses: actions/checkout@v1
4039
- name: Install dependencies
4140
run: |
4241
python -m pip install --upgrade pip setuptools codecov
4342
pip install django~=${{ matrix.django-version }}
4443
- name: Test with pytest
4544
run: python setup.py test
46-
- name: Codecov
47-
run: codecov
45+
- run: codecov

0 commit comments

Comments
 (0)