Skip to content

Commit

Permalink
Add if: always() to all backend checks
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Mar 5, 2025
1 parent 9e83b0c commit 37ed50e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pr_ci_backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,12 @@ jobs:
run: mypy ./backend --config-file ./backend/pyproject.toml

- name: Run Django Migrations - Database Migrations Check
if: always()
run: |
python ./backend/manage.py makemigrations
python ./backend/manage.py migrate
- name: Run pytest - Unit Tests
if: always()
run: |
pytest ./backend --cov=backend --cov-report=term-missing --cov-fail-under=60 --cov-config=./backend/pyproject.toml

0 comments on commit 37ed50e

Please sign in to comment.