Some checks are pending
Django Tests / test (push) Blocked by required conditions
22 lines
No EOL
468 B
YAML
22 lines
No EOL
468 B
YAML
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 |