Skip to content

Commit 12df294

Browse files
committed
Fix GitHub action for publishing
1 parent 4093a6c commit 12df294

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on: [push, pull_request]
55
permissions:
66
contents: read
77

8+
env:
9+
UV_VERSION: "0.5.1"
10+
811
jobs:
912

1013
lint:
@@ -20,7 +23,7 @@ jobs:
2023
- name: Install uv
2124
uses: astral-sh/setup-uv@v3
2225
with:
23-
version: "0.5.1"
26+
version: "$UV_VERSION"
2427

2528
- name: Lint
2629
run: make lint
@@ -42,7 +45,7 @@ jobs:
4245
- name: Install uv
4346
uses: astral-sh/setup-uv@v3
4447
with:
45-
version: "0.5.1"
48+
version: "$UV_VERSION"
4649

4750
- name: Run tests
4851
run: make test

0 commit comments

Comments
 (0)