Skip to content

Commit c91068c

Browse files
📦️ Fix CI setup (#31)
1 parent ee17e7b commit c91068c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
lint:
22
@echo "Linting the project code"
3-
black .
4-
isort .
5-
ruff . --fix
3+
poetry run black .
4+
poetry run isort .
5+
poetry run ruff . --fix
66

77
verify:
88
@echo "Verifying the project code"
9-
black . --check
10-
isort . --check
11-
ruff .
9+
poetry run black . --check
10+
poetry run isort . --check
11+
poetry run ruff .

0 commit comments

Comments
 (0)