From cd610e56bf381628cbc00f07f56bd9adc4b07a05 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 4 Mar 2023 13:33:57 +0100 Subject: [PATCH] Update lint_python.yml --- .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 a081a28..53c0c67 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -15,7 +15,7 @@ jobs: run: ruff --exit-zero --select=ALL --statistics --target-version=py37 . - name: "Ruff: All fixable (ruff --fix) issues" run: ruff --exit-zero --select=ALL --ignore=ANN204,COM812,ERA001,RSE102 - --statistics --target-version=py37 . || true | grep "\[\*\]" + --statistics --target-version=py37 . | grep "\[\*\]" - run: pip install black codespell mypy pytest safety - run: black --check . || true - run: codespell || true # --ignore-words-list="" --skip="*.css,*.js,*.lock"