We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dbd76e commit 2ccd2c9Copy full SHA for 2ccd2c9
1 file changed
.github/workflows/linter.yml
@@ -17,12 +17,14 @@ jobs:
17
- name: Install dependencies
18
run: |
19
python -m pip install --upgrade pip
20
- pip install pylint
+ pip install ruff pylint
21
pip install -r requirements.in
22
- - uses: psf/black@stable
23
- with:
24
- options: "--check ."
25
- jupyter: true
+ - name: Run ruff format check
+ run: |
+ ruff format --check .
+ - name: Run ruff lint
26
27
+ ruff check .
28
- name: Run pylint
29
- pylint rocketserializer/
30
+ pylint examples/ rocketserializer/ tests/
0 commit comments