Skip to content

Commit 3c3c1c1

Browse files
committed
Split CI steps
1 parent 30adca5 commit 3c3c1c1

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/python.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,13 @@ jobs:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
2222
run: python -m pip install -e .[dev]
23-
- name: Lint
24-
run: make lint
23+
- name: Flake8 lint
24+
run: flake8 .
25+
- name: Black lint
26+
run: black --diff --check .
27+
- name: isort lint
28+
run: isort --check --diff .
29+
- name: MyPy lint
30+
run: mypy .
2531
- name: Test
26-
run: make test
32+
run: pytest -v tests/

0 commit comments

Comments
 (0)