Skip to content

Commit f108d5d

Browse files
committed
add ugly hack for now
1 parent 808e808 commit f108d5d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/CI_build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040
- name: Correct coverage paths
4141
run: sed -i "s+$PWD/++g" coverage.xml
4242
- name: Check style against standards using Ruff
43-
run: poetry ruff check .
43+
run: |
44+
pip install ruff
45+
ruff check .
4446
- name: Check whether import statements are used consistently
4547
run: poetry run isort . --check-only --diff
4648

0 commit comments

Comments
 (0)