From fc731c3a62c13f3511ded95b982c7ade5d2ef740 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Tue, 30 Jul 2024 08:37:53 -0500 Subject: [PATCH] Use new `ruff check` invocation requirement --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e457855..dd104f6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,9 +35,9 @@ jobs: run: | pip install ruff # stop the build if there are Python syntax errors or undefined names - ruff --output-format=github --select=E9,F63,F7,F82 . + ruff check --output-format=github --select=E9,F63,F7,F82 . # default set of ruff rules with GitHub Annotations - ruff --output-format=github . + ruff check --output-format=github . - name: Test with pytest run: | pip install pytest