Skip to content

Commit 5f3df2d

Browse files
committed
fix: update Ruff command in workflow
Update Ruff command to 'ruff check' for linting with exclusion.
1 parent 74e13ee commit 5f3df2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/setup-python@v4
2121
with:
2222
python-version: '3.x'
23-
23+
2424
- name: Test with pytest
2525
env:
2626
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.TEST_SERVICE_ACCOUNT_TOKEN }}
@@ -33,5 +33,5 @@ jobs:
3333
- name: Lint with Ruff
3434
run: |
3535
pip install ruff
36-
ruff --output-format=github --exclude=src/onepassword/lib/ .
36+
ruff check --output-format=github --exclude=src/onepassword/lib/ .
3737
continue-on-error: true

0 commit comments

Comments
 (0)