🚨(CI) fix linter backend
The linter in the CI was checking only the impress directory. We were passing near some lint issues. Now the linter checks the whole backend directory.
This commit is contained in:
6
.github/workflows/impress.yml
vendored
6
.github/workflows/impress.yml
vendored
@@ -93,11 +93,11 @@ jobs:
|
||||
- name: Install development dependencies
|
||||
run: pip install --user .[dev]
|
||||
- name: Check code formatting with ruff
|
||||
run: ~/.local/bin/ruff format impress --diff
|
||||
run: ~/.local/bin/ruff format . --diff
|
||||
- name: Lint code with ruff
|
||||
run: ~/.local/bin/ruff check impress
|
||||
run: ~/.local/bin/ruff check .
|
||||
- name: Lint code with pylint
|
||||
run: ~/.local/bin/pylint impress
|
||||
run: ~/.local/bin/pylint .
|
||||
|
||||
|
||||
test-back:
|
||||
|
||||
Reference in New Issue
Block a user