Skip to content

Commit 431b012

Browse files
stadleroyashi
authored andcommitted
github: workflow: test: Pin Python version to 3.11
Set the Python version explicitly instead of relying on the default version provided by the runner. This ensures that the Python version is supported by Zephyr (at least for now). Some windows runners are stuck at Python 3.9
1 parent 98d2119 commit 431b012

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ jobs:
1010
fail-fast: false
1111

1212
steps:
13+
- name: Setup Python
14+
uses: actions/setup-python@v4
15+
with:
16+
python-version: '3.11'
17+
1318
- name: Python version
1419
run: |
1520
python3 --version

0 commit comments

Comments
 (0)