Skip to content

Commit 804e82b

Browse files
committed
Another attempt trying to fix wrong python version in github action.
1 parent 4efc649 commit 804e82b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ jobs:
1919
run: |
2020
sudo apt-get update && \
2121
sudo apt-get install -y --no-install-recommends curl libssl-dev pkg-config libclang-dev protobuf-compiler libprotobuf-dev
22+
- uses: actions/setup-python@v5
23+
with:
24+
python-version: '3.13'
25+
- name: Poetry install
26+
run: |
27+
pipx install "poetry==2.0.0" && cd client/python && poetry env use python3.13 && poetry install
2228
- uses: pnpm/action-setup@v4
2329
with:
2430
version: 9
@@ -38,12 +44,6 @@ jobs:
3844
with:
3945
toolchain: stable
4046
default: true
41-
- uses: actions/setup-python@v5
42-
with:
43-
python-version: '3.13'
44-
- name: Poetry install
45-
run: |
46-
pipx install poetry && poetry -C client/python env use python3.13 && poetry -C client/python install
4747
# - name: Setup Go
4848
# uses: actions/setup-go@v5
4949
# with:

0 commit comments

Comments
 (0)