Skip to content
This repository was archived by the owner on Mar 5, 2026. It is now read-only.

Commit 122b70f

Browse files
CopilotMauGx3
andcommitted
Fix Python version detection in GitHub Actions workflows
Co-authored-by: MauGx3 <225707+MauGx3@users.noreply.github.com>
1 parent e9fbdcb commit 122b70f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pyright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.10]
16+
python-version: ["3.10"]
1717
poetry-version: [1.3.2]
1818
steps:
1919
- name: Checkout repository

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.10, 3.11]
16+
python-version: ["3.10", "3.11"]
1717
poetry-version: [1.3.2]
1818
steps:
1919
- name: Checkout repository

0 commit comments

Comments
 (0)