We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7849f5d commit 31245ccCopy full SHA for 31245cc
.github/workflows/lint.yaml
@@ -1,4 +1,4 @@
1
-name: Lint Python Code
+name: Lint and Test Python Code
2
3
on:
4
pull_request:
@@ -27,6 +27,6 @@ jobs:
27
python -m pip install --upgrade pip poetry
28
poetry install
29
- name: Run Ruff
30
- run: poetry run ruff check --output-format=github
+ run: poetry run ruff check --output-format=github && poetry run pycodestyle src
31
- name: Run tests under Python ${{ matrix.python-version }}
32
run: poetry run make test
0 commit comments