Skip to content

Commit 4787a22

Browse files
committed
fixup! .github/workflows: add lint/format CI
1 parent 01305df commit 4787a22

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ruff.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
- name: Install dependencies
1313
run: |
1414
python -m pip install uv
15-
uv pip compile pyproject.toml --extra ci | uv pip install --user -r -
15+
uv venv
16+
uv pip compile pyproject.toml --extra ci | uv pip install -r -
1617
- name: ruff check
1718
run: ruff check --output-format=github .
1819
format:
@@ -26,7 +27,8 @@ jobs:
2627
- name: Install dependencies
2728
run: |
2829
python -m pip install uv
29-
uv pip compile pyproject.toml --extra ci | uv pip install --user -r -
30+
uv venv
31+
uv pip compile pyproject.toml --extra ci | uv pip install -r -
3032
- name: ruff format
3133
run: ruff format --diff .
3234
# test:

0 commit comments

Comments
 (0)