aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/CI.yml
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2026-01-04 11:53:38 +0800
committerHsiangNianian <i@jyunko.cn>2026-01-04 11:53:38 +0800
commitb11ea3e9f24d1a364231c7f10808c3a405e42630 (patch)
tree4dafb27a18762d8c112ca0f7a145c4730212e50f /.github/workflows/CI.yml
parent1fc14d1b4817497b285a17e47450d4b94f44153b (diff)
downloadconventional_role_play-b11ea3e9f24d1a364231c7f10808c3a405e42630.tar.gz
conventional_role_play-b11ea3e9f24d1a364231c7f10808c3a405e42630.zip
fix(ci): ensure python version is quoted in CI configuration
Diffstat (limited to '.github/workflows/CI.yml')
-rw-r--r--.github/workflows/CI.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index 8956a7d..a965d32 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
- python-version: 3.10
+ python-version: "3.10"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
@@ -78,7 +78,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
- python-version: 3.10
+ python-version: "3.10"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
@@ -149,7 +149,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
- python-version: 3.10
+ python-version: "3.10"
- name: Build wheels
uses: PyO3/maturin-action@v1
with: