Skip to content

Commit 9b13533

Browse files
committed
Run collectstatic earlier in ci, part 2.
1 parent 9eb1854 commit 9b13533

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/hypha-ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,16 @@ jobs:
7474
uv venv
7575
uv pip install -r requirements/dev.txt -r requirements/translate.txt
7676
77+
- name: Run django collectstatic
78+
run: |
79+
.venv/bin/python manage.py collectstatic --noinput --no-post-process --verbosity=1
80+
7781
- name: Check Django migrations
7882
if: matrix.group == 1
7983
run: |
8084
.venv/bin/python manage.py makemigrations --dry-run --verbosity=3
8185
.venv/bin/python manage.py makemigrations --check
8286
83-
- name: Run django collectstatic
84-
if: matrix.group == 1
85-
run: |
86-
.venv/bin/python manage.py collectstatic --noinput --no-post-process --verbosity=1
87-
8887
- name: Check Django checks
8988
if: matrix.group == 3
9089
run: |

0 commit comments

Comments
 (0)