We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78f52e9 commit b9b0904Copy full SHA for b9b0904
.github/workflows/lint.yml
@@ -8,9 +8,9 @@ on: push
8
9
jobs:
10
11
- flake8-lint:
+ ruff-lint:
12
runs-on: ubuntu-latest
13
- name: Flake8 code check
+ name: Ruff code check
14
steps:
15
- uses: actions/checkout@v6
16
- uses: actions/setup-python@v6
@@ -21,4 +21,5 @@ jobs:
21
poetry-version: "2.3.1"
22
- run: |
23
poetry install --only dev
24
- poetry run flake8 src/ tests/
+ poetry run ruff check src/ tests/
25
+ poetry run ruff format src/ tests/ --check
0 commit comments