Skip to content

Commit 943e468

Browse files
authored
refactore:simplify Ruff job by removing uv/python setup and using ruff-action. (#294)
1 parent 0a1808d commit 943e468

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,11 @@ jobs:
1919
- uses: actions/checkout@v4
2020
with:
2121
persist-credentials: false
22-
- name: Install uv
23-
uses: astral-sh/setup-uv@v3
24-
- uses: actions/setup-python@v5
22+
- name: Run Ruff Linting 🧹
23+
uses: astral-sh/ruff-action@v3
2524
with:
26-
cache-dependency-path: uv.lock
27-
python-version: "3.13"
28-
- name: Run ruff
29-
shell: bash
30-
run: |
31-
uv run ruff check
25+
args: check
26+
src: "."
3227

3328
test-regular:
3429
needs: ["ruff"]

0 commit comments

Comments
 (0)