redo the action for running tests
Some checks are pending
Django Tests / test (push) Blocked by required conditions

This commit is contained in:
Tobias Brunner 2025-06-20 14:47:12 +02:00
parent 78f52ea7f4
commit 5888e281ea
No known key found for this signature in database
6 changed files with 22 additions and 1648 deletions

View file

@ -0,0 +1,22 @@
name: Django Tests
on:
push:
branches: ["*"]
pull_request:
jobs:
test:
needs: build
runs-on: ubuntu-latest
container:
image: ${{ vars.CONTAINER_REGISTRY }}/${{ vars.CONTAINER_IMAGE_NAME }}:latest
options: --entrypoint ""
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Django tests
run: |
python -m hub migrate --noinput
python -m hub test --verbosity=2