Fix migration test to give more information

This commit is contained in:
Neil Martinsen-Burrell 2023-05-12 09:58:49 -05:00
parent 41898713f9
commit a53d7a9286
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184

View file

@ -37,9 +37,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Check complete migrations
- name: Check for complete migrations
working-directory: ./src
run: docker compose run app python manage.py makemigrations --check
run: |
docker compose run app ./manage.py makemigrations --dry-run --verbosity 3 && \
docker compose run app ./manage.py makemigrations --check
pa11y-scan:
runs-on: ubuntu-20.04