Skip to content

Commit b3916d5

Browse files
authored
chore: fix ruff command (#3044)
1 parent d38af2e commit b3916d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
- run: pip install --user ruff
22-
- run: ruff --output-format=github --select="E,F,PLC,PLE,UP,W,YTT" --ignore="E721,PLC1901,S101,UP031" --target-version=py38 .
23-
22+
- run: ruff check --output-format=github --select="E,F,PLC,PLE,UP,W,YTT" --ignore="E721,PLC1901,S101,UP031" --target-version=py38 .
23+
2424
lint-js:
2525
name: Lint JS
2626
runs-on: ubuntu-latest
@@ -88,7 +88,7 @@ jobs:
8888
8989
tests:
9090
# lint-python takes ~5 seconds, so wait for it to pass before running the full matrix of tests.
91-
needs: [lint-python]
91+
needs: [lint-python]
9292
strategy:
9393
fail-fast: false
9494
max-parallel: 15

0 commit comments

Comments
 (0)