-
Notifications
You must be signed in to change notification settings - Fork 1
84 lines (81 loc) · 1.95 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Test
on:
push:
pull_request:
types: [reopened]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: pip install -e ".[codestyle]"
- name: Lint
run: |
isort --check-only .
black --check .
flake8 .
pyupgrade --py37-plus **/*.py
test:
name: Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
# Django 2.2
- django: "2.2"
python: "3.7"
- django: "2.2"
python: "3.8"
- django: "2.2"
python: "3.9"
# Django 3.0
- django: "3.0"
python: "3.7"
- django: "3.0"
python: "3.8"
- django: "3.0"
python: "3.9"
# Django 3.1
- django: "3.1"
python: "3.7"
- django: "3.1"
python: "3.8"
- django: "3.1"
python: "3.9"
# Django 3.2
- django: "3.2"
python: "3.7"
- django: "3.2"
python: "3.8"
- django: "3.2"
python: "3.9"
- django: "3.2"
python: "3.10"
# Django 4.0
- django: "4.0"
python: "3.8"
- django: "4.0"
python: "3.9"
- django: "4.0"
python: "3.10"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install -e ".[testing]"
pip install "django~=${{ matrix.django }}"
- name: Test
run: pytest --cov-report=xml
- uses: codecov/codecov-action@v2