File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 9
9
code_embedder :
10
10
name : " Code embedder"
11
11
runs-on : ubuntu-latest
12
+ env :
13
+ PYTHON_VERSION : " 3.12"
12
14
steps :
13
15
- name : Checkout
14
16
uses : actions/checkout@v4
15
17
# with:
16
18
# ref: ${{ github.event.pull_request.head.ref }}
17
19
20
+ - name : 🐍 Set up Python ${{ env.PYTHON_VERSION }}
21
+ uses : actions/setup-python@v5
22
+ with :
23
+ python-version : ${{ env.PYTHON_VERSION }}
24
+
18
25
- name : 🪄 Format comments in code snippets
19
26
run : python dev/scripts/format_snippet_prints.py
20
27
Original file line number Diff line number Diff line change 39
39
40
40
- name : 📥 Install the project
41
41
run : |
42
- uv sync --all-extras --dev
43
42
uv python install ${{ env.PYTHON_VERSION }}
43
+ uv sync --all-extras --dev
44
44
uv pip install .
45
45
46
46
# - name: 🏞️ Activate virtual environment
You can’t perform that action at this time.
0 commit comments