-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (43 loc) · 1.45 KB
/
testing.yaml
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
---
name: "Testing"
on:
- push
jobs:
build:
name: "Testing"
runs-on: ubuntu-latest
steps:
- name: "Checkout the repository"
uses: actions/checkout@v2
- name: "Setup Python"
uses: actions/setup-python@v1
with:
python-version: '3.11'
- name: "Install OS dependencies"
run: |
sudo apt-get update
sudo apt-get install -y --fix-missing libxmlsec1-dev pkg-config
- name: "Install Poetry"
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: "Restore any cached Poetry dependencies"
uses: actions/cache@v1
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- name: "Install any new dependencies"
run: poetry install
if: steps.cache.outputs.cache-hit != 'true'
- name: "Test migrations"
run: |
poetry run python website/manage.py makemigrations --no-input --check --dry-run
- name: "Perform Django self-check"
run: |
poetry run python3 website/manage.py check
- name: "Run Django tests using Coverage"
run: poetry run coverage run website/manage.py test website/
- name: "Check Coverage report"
run: poetry run coverage report --omit "*/site-packages/*,*/migrations/*"