Skip to content

Commit 2ccd2c9

Browse files
update github actions instructions
1 parent 5dbd76e commit 2ccd2c9

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/linter.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@ jobs:
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip
20-
pip install pylint
20+
pip install ruff pylint
2121
pip install -r requirements.in
22-
- uses: psf/black@stable
23-
with:
24-
options: "--check ."
25-
jupyter: true
22+
- name: Run ruff format check
23+
run: |
24+
ruff format --check .
25+
- name: Run ruff lint
26+
run: |
27+
ruff check .
2628
- name: Run pylint
2729
run: |
28-
pylint rocketserializer/
30+
pylint examples/ rocketserializer/ tests/

0 commit comments

Comments
 (0)