ttvdrops/.github/workflows/docker.yaml
Joakim Hellsén 43fa3f604a
All checks were successful
Run Pytest / test (push) Successful in 9s
Remove Python setup actions from Docker workflow
2026-02-21 22:52:57 +01:00

21 lines
355 B
YAML

name: Run Pytest
on:
push:
pull_request:
schedule:
- cron: "0 14 * * 0" # Run weekly at 14:00 UTC
workflow_dispatch:
jobs:
test:
runs-on: self-hosted
env:
DJANGO_DEBUG: False
DJANGO_SECRET_KEY: 1234567890
steps:
- uses: actions/checkout@v6
- run: uv sync --all-extras --dev
- run: uv run pytest