-
Notifications
You must be signed in to change notification settings - Fork 20
76 lines (61 loc) · 1.71 KB
/
ci.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
name: build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
# By default, GitHub will maximize the number of jobs run in parallel
# depending on the available runners on GitHub-hosted virtual machines.
# max-parallel: 8
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
tox-env:
- "dj42" # LTS
- "dj50"
exclude:
# Python 3.8/3.9 is incompatible with Django 5.0+
- python-version: "3.8"
tox-env: "dj50"
- python-version: "3.9"
tox-env: "dj50"
env:
TOXENV: ${{ matrix.tox-env }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip version
run: |
python -m pip install -U pip
- name: Install tox and coverage packages
run: |
pip install tox tox-gh-actions 'coverage<5' coveralls
- name: Run tox and coverage
run: |
tox -e $TOXENV
coverage report
coverage html
# - name: Upload coverage to coveralls
# run: |
# coveralls
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install tox and flake8 packages
run: pip install tox tox-gh-actions flake8
- name: Lint
run: tox -e flake8