Skip to content

Commit b9b0904

Browse files
author
Robert Roos
committed
Replaced flake + isort + black by ruff
1 parent 78f52e9 commit b9b0904

File tree

3 files changed

+38
-330
lines changed

3 files changed

+38
-330
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ on: push
88

99
jobs:
1010

11-
flake8-lint:
11+
ruff-lint:
1212
runs-on: ubuntu-latest
13-
name: Flake8 code check
13+
name: Ruff code check
1414
steps:
1515
- uses: actions/checkout@v6
1616
- uses: actions/setup-python@v6
@@ -21,4 +21,5 @@ jobs:
2121
poetry-version: "2.3.1"
2222
- run: |
2323
poetry install --only dev
24-
poetry run flake8 src/ tests/
24+
poetry run ruff check src/ tests/
25+
poetry run ruff format src/ tests/ --check

0 commit comments

Comments
 (0)