Add CI test workflow
Some checks failed
Build and push Docker image / build (push) Successful in 12s
Test / test (push) Failing after 3s

This commit is contained in:
marwin 2026-03-16 19:40:11 +01:00
parent d41af519e8
commit c787e55ef3

View file

@ -0,0 +1,26 @@
name: Test
on:
push:
branches:
- master
- testing
pull_request:
jobs:
test:
runs-on: ubuntu-latest
container:
image: python:3.12-slim
steps:
- uses: actions/checkout@v4
- name: Install dependencies
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