2026-03-16 19:40:11 +01:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- master
|
|
|
|
|
- testing
|
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
test:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
container:
|
2026-03-16 20:03:49 +01:00
|
|
|
image: catthehacker/ubuntu:act-22.04
|
2026-03-16 19:40:11 +01:00
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
2026-03-16 20:03:49 +01:00
|
|
|
- name: Install Python dependencies
|
2026-03-16 19:40:11 +01:00
|
|
|
run: pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
|
|
- name: Django system check
|
|
|
|
|
run: python manage.py check
|
|
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
|
run: python manage.py test
|