Skip to content

Commit 25c4532

Browse files
More fussing.
1 parent 5c9a7f7 commit 25c4532

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,19 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- uses: actions/checkout@v4
22-
- uses: chartboost/ruff-action@v1 #Check with ruff
2322
- name: Install dependencies
2423
run: |
2524
python -m pip install --upgrade pip
2625
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2726
if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
27+
- name: Lint with Ruff
28+
run: |
29+
pip install ruff
30+
ruff --output-format=github .
31+
continue-on-error: true
2832

2933
- name: Run tests
3034
run: |
3135
make quick_test
3236
make test
33-
34-
35-
37+

0 commit comments

Comments
 (0)