Skip to content

Commit d00beaf

Browse files
committed
Fix CI syntax
1 parent c35dfe8 commit d00beaf

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Analyse with MyPy
6666
run: mypy src
6767

68-
test-with-unpinned-deps:
68+
test-with-unpinned-deps:
6969
runs-on: ubuntu-latest
7070
strategy:
7171
matrix:
@@ -88,13 +88,14 @@ test-with-unpinned-deps:
8888
- name: Format with Ruff
8989
if: success() || failure()
9090
run: ruff format --check .
91+
92+
- name: Analyse with MyPy
93+
if: success() || failure()
94+
run: mypy src
9195

9296
- name: Test with pytest
9397
if: success() || failure()
9498
run: pytest --cov=src --cov-report=lcov
95-
96-
- name: Analyse with MyPy
97-
run: mypy src
9899

99100
coverage:
100101
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)