From 9b80a836ec14cd5d95eb1ff191e43fea307e43a2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 6 Jan 2024 21:40:12 +0100 Subject: [PATCH] lint_python.yml: ruff --output-format=github . --- .github/workflows/lint_python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index f50e8aa9..7334649b 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -11,7 +11,7 @@ jobs: check-latest: true - run: pip install --upgrade pip setuptools wheel - run: pip install black codespell mypy pytest ruff safety - - run: ruff --format=github . + - run: ruff --output-format=github . - run: black --check . || true - run: codespell # --ignore-words-list="" --skip="*.css,*.js,*.lock" - run: pip install -r requirements-test.txt