Skip to content

Commit f9bacdd

Browse files
adjust workflow
Signed-off-by: Laurynas Jagutis <[email protected]>
1 parent 10cc8b4 commit f9bacdd

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

.github/workflows/check-code-quality.yml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,16 @@ jobs:
2929
- name: Upgrade pip
3030
run: pip install --upgrade pip
3131

32-
- name: Install and run isort
33-
run: |
34-
pip install isort
35-
isort .
36-
37-
- name: Install and run black
38-
run: |
39-
pip install black[jupyter]
40-
black .
41-
4232
- name: Install and run mypy
4333
run: |
4434
pip install mypy
4535
mypy src
4636
47-
- name: Install and run pylint
37+
- name: Install and run ruff
4838
run: |
49-
pip install pylint .
50-
pylint power_grid_model_io
39+
pip install ruff .
40+
ruff check .
41+
ruff format .
5142
5243
- name: If needed raise error
5344
run: |

0 commit comments

Comments
 (0)