We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eb1854 commit 9b13533Copy full SHA for 9b13533
1 file changed
.github/workflows/hypha-ci.yml
@@ -74,17 +74,16 @@ jobs:
74
uv venv
75
uv pip install -r requirements/dev.txt -r requirements/translate.txt
76
77
+ - name: Run django collectstatic
78
+ run: |
79
+ .venv/bin/python manage.py collectstatic --noinput --no-post-process --verbosity=1
80
+
81
- name: Check Django migrations
82
if: matrix.group == 1
83
run: |
84
.venv/bin/python manage.py makemigrations --dry-run --verbosity=3
85
.venv/bin/python manage.py makemigrations --check
86
- - name: Run django collectstatic
- if: matrix.group == 1
- run: |
- .venv/bin/python manage.py collectstatic --noinput --no-post-process --verbosity=1
87
-
88
- name: Check Django checks
89
if: matrix.group == 3
90
0 commit comments