We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30adca5 commit 3c3c1c1Copy full SHA for 3c3c1c1
1 file changed
.github/workflows/python.yml
@@ -20,7 +20,13 @@ jobs:
20
python-version: ${{ matrix.python-version }}
21
- name: Install dependencies
22
run: python -m pip install -e .[dev]
23
- - name: Lint
24
- run: make lint
+ - name: Flake8 lint
+ 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 .
31
- name: Test
- run: make test
32
+ run: pytest -v tests/
0 commit comments