Skip to content

Commit 31312ed

Browse files
committed
Run tests even if linter fails
1 parent 91e07ca commit 31312ed

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,12 @@ jobs:
4343
pip install Django~=${{ matrix.django-version }}
4444
- name: Lint
4545
run: just lint
46-
- name: Run tests
47-
run: just test
4846
- name: Run fast tests
47+
if: ${{ !cancelled() }}
4948
run: just test-fast
49+
- name: Run tests
50+
if: ${{ !cancelled() }}
51+
run: just test
5052

5153
test-postgres:
5254
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)