Skip to content

Commit 3cc98ad

Browse files
committed
use Build.yml from uv documentation
1 parent 07c32d4 commit 3cc98ad

1 file changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/Build.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,13 @@ jobs:
1010
python-version: ["3.10", "3.11", "3.12", "3.13"]
1111

1212
steps:
13-
- uses: actions/checkout@v4
14-
15-
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v5
17-
with:
18-
python-version: ${{ matrix.python-version }}
13+
- uses: actions/checkout@v6
1914

2015
- name: Install uv
21-
run: |
22-
curl -LsSf https://astral.sh/uv/install.sh | sh
23-
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
16+
uses: astral-sh/setup-uv@v7
17+
18+
- name: Set up Python
19+
run: uv python install ${{ matrix.python-version }}
2420

2521
- name: Install dependencies
2622
run: |

0 commit comments

Comments
 (0)