We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07c32d4 commit 3cc98adCopy full SHA for 3cc98ad
1 file changed
.github/workflows/Build.yml
@@ -10,17 +10,13 @@ jobs:
10
python-version: ["3.10", "3.11", "3.12", "3.13"]
11
12
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 }}
+ - uses: actions/checkout@v6
19
20
- name: Install uv
21
- run: |
22
- curl -LsSf https://astral.sh/uv/install.sh | sh
23
- echo "$HOME/.cargo/bin" >> $GITHUB_PATH
+ uses: astral-sh/setup-uv@v7
+
+ - name: Set up Python
+ run: uv python install ${{ matrix.python-version }}
24
25
- name: Install dependencies
26
run: |
0 commit comments