Skip to content

Commit f76e153

Browse files
committed
🚧
1 parent a0839ce commit f76e153

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/code-embedder-test2.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,19 @@ jobs:
99
code_embedder:
1010
name: "Code embedder"
1111
runs-on: ubuntu-latest
12+
env:
13+
PYTHON_VERSION: "3.12"
1214
steps:
1315
- name: Checkout
1416
uses: actions/checkout@v4
1517
# with:
1618
# ref: ${{ github.event.pull_request.head.ref }}
1719

20+
- name: 🐍 Set up Python ${{ env.PYTHON_VERSION }}
21+
uses: actions/setup-python@v5
22+
with:
23+
python-version: ${{ env.PYTHON_VERSION }}
24+
1825
- name: 🪄 Format comments in code snippets
1926
run: python dev/scripts/format_snippet_prints.py
2027

.github/workflows/code-embedder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939

4040
- name: 📥 Install the project
4141
run: |
42-
uv sync --all-extras --dev
4342
uv python install ${{ env.PYTHON_VERSION }}
43+
uv sync --all-extras --dev
4444
uv pip install .
4545
4646
# - name: 🏞️ Activate virtual environment

0 commit comments

Comments
 (0)