Update django-test.yaml
added makemigrations as a step for the action
This commit is contained in:
parent
20a2a5d2a0
commit
314edec890
1 changed files with 5 additions and 0 deletions
5
.github/workflows/django-test.yaml
vendored
5
.github/workflows/django-test.yaml
vendored
|
@ -25,6 +25,11 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
- name: Check Database Migrations
|
||||||
|
run: |
|
||||||
|
python manage.py makemigrations
|
||||||
|
env:
|
||||||
|
DJANGO_SECRET: ${{ secrets.DJANGO_SECRET }}
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: |
|
run: |
|
||||||
python manage.py test
|
python manage.py test
|
||||||
|
|
Loading…
Reference in a new issue