diff options
-rw-r--r-- | .github/workflows/lint.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5e0676d..4435317 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -29,5 +29,5 @@ jobs: dev: true python_version: '3.10' - - name: Lint code with Flake8 - run: poetry run flake8 . --count --show-source --statistics + - name: Lint code with ruff + run: ruff check --format=github . |