Skip to content

Commit 6efefd6

Browse files
committed
Updates ruff check command in actions
1 parent 4f6d830 commit 6efefd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
- name: Lint with ruff
3838
run: |
3939
# stop the build if there are Python syntax errors or undefined names
40-
pipenv run ruff . --select=E9,F63,F7,F82 --show-source
40+
pipenv run ruff check . --select=E9,F63,F7,F82 --show-source
4141
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
42-
pipenv run ruff . --exit-zero
42+
pipenv run ruff check . --exit-zero
4343
- name: Test with pytest
4444
run: |
4545
pipenv run py.test --cov-config .coveragerc --cov-report xml:output/coverage.xml --cov mygeotab --junitxml output/python${{ matrix.python-version }}-test-results.xml --benchmark-min-rounds=3 --benchmark-storage=file://output/ --benchmark-autosave tests/

0 commit comments

Comments
 (0)