Skip to content

Commit 46d4ce3

Browse files
committed
Change to ruff check
1 parent fcb2adb commit 46d4ce3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/python.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
- name: 'Lint with ruff'
2525
run: |
2626
# stop the build if there are Python syntax errors or undefined names
27-
ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
27+
ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
2828
# default set of ruff rules with GitHub Annotations
29-
ruff --output-format=github --target-version=py37 .
29+
ruff check --output-format=github --target-version=py37 .
3030
- name: 'Test with pytest'
3131
run: |
3232
pytest

.github/workflows/python_selfhost.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
- name: 'Lint with ruff'
2525
run: |
2626
# stop the build if there are Python syntax errors or undefined names
27-
ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
27+
ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
2828
# default set of ruff rules with GitHub Annotations
29-
ruff --output-format=github --target-version=py37 .
29+
ruff check --output-format=github --target-version=py37 .
3030
- name: 'Test with pytest'
3131
run: |
3232
pytest

0 commit comments

Comments
 (0)