Skip to content

Commit 12c2acf

Browse files
committed
Make sure github actions runs all linter checks.
1 parent 59ea359 commit 12c2acf

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/push.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: astral-sh/ruff-action@v1
8+
- uses: astral-sh/ruff-action@v3
99
with:
10-
args: 'check --select I .'
11-
- uses: astral-sh/ruff-action@v1
10+
args: check
11+
- uses: astral-sh/ruff-action@v3
1212
with:
1313
args: 'format --check'
1414

@@ -24,7 +24,5 @@ jobs:
2424
uses: astral-sh/setup-uv@v5
2525
with:
2626
python-version: ${{matrix.python-version}}
27-
- name: Install dependencies
28-
run: uv pip install PyQt5
2927
- name: Run tests
3028
run: uv run --dev pytest tests

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ dependencies = [
2424
"scipy>=1.9.0",
2525
"pandas>=2.3.3",
2626
"plotly>=5.18.0",
27+
"pyqt5>=5.15.11",
2728
"tifffile>=2021.11.2",
2829
"scikit-learn>=1.2.0",
2930
"tqdm>=4.64",

0 commit comments

Comments
 (0)