Skip to content

Commit 0aeef2c

Browse files
committed
fix(ci): ensure correct ruff version by using python -m pip and python -m ruff
1 parent 3773168 commit 0aeef2c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test_python.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v4
14-
- run: pip install 'ruff>=0.1.0'
15-
- run: ruff --output-format=github .
14+
- run: python -m pip install --upgrade 'ruff>=0.1.0'
15+
- run: python -m ruff --version
16+
- run: python -m ruff --output-format=github .
1617

1718
test_python:
1819
strategy:

0 commit comments

Comments
 (0)