Skip to content

Commit b8c9c34

Browse files
committed
YAML の悪いところ
1 parent 91892cc commit b8c9c34

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/build-debug.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
platform:
2222
- name: ubuntu-24.04_x86_64
2323
runs-on: ubuntu-24.04
24+
python:
25+
- version: "3.10"
26+
- version: "3.11"
27+
- version: "3.12"
28+
- version: "3.13"
2429
runs-on: ${{ matrix.platform.runs-on }}
2530
steps:
2631
- name: Disk Cleanup
@@ -229,7 +234,7 @@ jobs:
229234
working-directory: sora-python-sdk
230235
run: |
231236
set -x
232-
# uv python pin ${{ matrix.python_version }}
237+
uv python pin ${{ matrix.python.version }}
233238
uv sync
234239
uv run python run.py --debug ${{ matrix.platform.name }}
235240
# cache

.github/workflows/build-relwithdebinfo.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
- name: ubuntu-24.04_x86_64
2323
runs-on: ubuntu-24.04
2424
python:
25-
- version: 3.10
26-
- version: 3.11
27-
- version: 3.12
28-
- version: 3.13
25+
- version: "3.10"
26+
- version: "3.11"
27+
- version: "3.12"
28+
- version: "3.13"
2929
runs-on: ${{ matrix.platform.runs-on }}
3030
steps:
3131
- name: Disk Cleanup

0 commit comments

Comments
 (0)