From 3ce397c9bed380606eb926fb75b890db7bc619a4 Mon Sep 17 00:00:00 2001 From: Chengzhong Wu Date: Tue, 9 Jul 2024 16:17:00 +0100 Subject: [PATCH] chore: fix ruff command --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d2746c1dc5..78f6b42d75 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,8 +19,8 @@ jobs: steps: - uses: actions/checkout@v4 - run: pip install --user ruff - - run: ruff --output-format=github --select="E,F,PLC,PLE,UP,W,YTT" --ignore="E721,PLC1901,S101,UP031" --target-version=py38 . - + - run: ruff check --output-format=github --select="E,F,PLC,PLE,UP,W,YTT" --ignore="E721,PLC1901,S101,UP031" --target-version=py38 . + lint-js: name: Lint JS runs-on: ubuntu-latest @@ -88,7 +88,7 @@ jobs: tests: # lint-python takes ~5 seconds, so wait for it to pass before running the full matrix of tests. - needs: [lint-python] + needs: [lint-python] strategy: fail-fast: false max-parallel: 15