Skip to content

Commit ee8fc31

Browse files
committed
Fix ruff invocation
1 parent 6d7d422 commit ee8fc31

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
max-parallel: 8
1515
matrix:
1616
os: [ubuntu-20.04, ubuntu-24.04]
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1818
steps:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-python@v5
@@ -24,13 +24,16 @@ jobs:
2424
- run: make lint
2525
- run: make test
2626
- uses: codecov/codecov-action@v4
27-
black:
28-
runs-on: ubuntu-22.04
29-
steps:
30-
- uses: actions/checkout@v4
31-
- uses: psf/black@stable
3227
isort:
3328
runs-on: ubuntu-22.04
3429
steps:
3530
- uses: actions/checkout@v4
3631
- uses: isort/[email protected]
32+
ruff:
33+
runs-on: ubuntu-latest
34+
steps:
35+
- uses: actions/checkout@v4
36+
- uses: astral-sh/ruff-action@v1
37+
- uses: astral-sh/ruff-action@v1
38+
with:
39+
args: "format --check"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ install:
1818
-rm -rf dist
1919
python -m pip install build
2020
python -m build
21-
python -m pip install --upgrade $$(echo dist/*.whl)[tests]
21+
python -m pip install --upgrade $$(echo dist/*.whl)[test]
2222

2323
.PHONY: test lint release docs
2424

0 commit comments

Comments
 (0)