Skip to content

Commit 8fcf9c6

Browse files
Fixes quality.yml Action to use updated uv version (#1194)
* Fixes quality to use updated uv * More clean up!
1 parent 2c1ce31 commit 8fcf9c6

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/quality.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,8 @@ jobs:
1717
- name: Install uv
1818
uses: astral-sh/setup-uv@v4
1919
with:
20-
version: "0.5.11"
21-
- name: Set up Python
22-
run: uv python install 3.10
23-
- name: Install dependencies
24-
run: uv sync --frozen --only-group dev
20+
version: "0.8.8"
2521
- name: Code quality
2622
run: |
27-
source .venv/bin/activate
28-
ruff format --check --diff open_instruct
29-
ruff check --exit-non-zero-on-fix open_instruct
30-
23+
uv run ruff format --check --diff open_instruct mason.py
24+
uv run ruff check --exit-non-zero-on-fix open_instruct mason.py

0 commit comments

Comments
 (0)