Skip to content

Commit

Permalink
Refs #232 - Add makemigrations to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerem Zaman committed Dec 12, 2021
1 parent 7eb8fe0 commit 36a6ddc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/webapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
pip install -r requirements.txt
pip install pytest-django
- name: Run migrations
run: python manage.py migrate
run: |
python manage.py makemigrations authentication
python manage.py makemigrations eventposts
python manage.py migrate
- name: Run tests
run: py.test

0 comments on commit 36a6ddc

Please sign in to comment.