-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (63 loc) · 1.95 KB
/
tests.yml
File metadata and controls
74 lines (63 loc) · 1.95 KB
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
name: tests
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
schedule:
- cron: '0 8 * * *'
jobs:
test:
name: 'Python ${{ matrix.python-version }} Django ${{ matrix.django-version }}'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.14', '3.13', '3.12', '3.11']
django-version: ['5.2', '5.1', '4.2']
exclude:
- python-version: '3.14'
django-version: '5.1'
- python-version: '3.14'
django-version: '4.2'
steps:
- name: Checkout
run: |
echo $GITHUB_REF $GITHUB_SHA
git clone https://github.com/$GITHUB_REPOSITORY.git .
git fetch origin $GITHUB_SHA:temporary-ci-branch
git checkout $GITHUB_SHA || (git fetch && git checkout $GITHUB_SHA)
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v5
# https://github.com/marketplace/actions/setup-python
with:
python-version: '${{ matrix.python-version }}'
cache: 'pip' # caching pip dependencies
cache-dependency-path: 'uv.lock'
- name: 'Bootstrap'
# The first manage.py call will create the .venv
run: |
./manage.py version
- name: 'Install Playwright browsers'
run: |
.venv/bin/playwright install
- name: 'Display all Django commands'
run: |
./manage.py --help
- name: 'Run pip-audit'
run: |
./manage.py pip_audit
- name: 'Python ${{ matrix.python-version }} Django ${{ matrix.django-version }}'
env:
PYTHONUNBUFFERED: 1
PYTHONWARNINGS: always
run: |
./manage.py nox -e "tests-${{ matrix.python-version }}(django='${{ matrix.django-version }}')"
- name: 'Upload coverage report'
uses: codecov/codecov-action@v5
# https://github.com/marketplace/actions/codecov
with:
fail_ci_if_error: false
verbose: true