mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
Check no missing migrations in django-tests workflow
This commit is contained in:
parent
ddf94f8714
commit
a884825b3c
1 changed files with 9 additions and 0 deletions
9
.github/workflows/django-tests.yml
vendored
9
.github/workflows/django-tests.yml
vendored
|
@ -32,6 +32,15 @@ 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 migrations up-to-date
|
||||||
|
run: |
|
||||||
|
python ./manage.py makemigrations --check
|
||||||
|
env:
|
||||||
|
SECRET_KEY: beepbeep
|
||||||
|
DOMAIN: your.domain.here
|
||||||
|
EMAIL_HOST: ""
|
||||||
|
EMAIL_HOST_USER: ""
|
||||||
|
EMAIL_HOST_PASSWORD: ""
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
env:
|
env:
|
||||||
SECRET_KEY: beepbeep
|
SECRET_KEY: beepbeep
|
||||||
|
|
Loading…
Reference in a new issue