Skip to content

Commit 34d3bc8

Browse files
committed
[ci] Add range of python version 3.8 to 3.13 for example tests
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 0e011c5 commit 34d3bc8

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

.github/workflows/python-examples.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,24 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
os: [ ubuntu, windows, macos ]
29-
release: [ stable, nightly ]
28+
- os: ubuntu
29+
release: stable
30+
python: 3.8
31+
- os: ubuntu
32+
release: nightly
33+
python: 3.11
34+
- os: windows
35+
release: stable
36+
python: 3.9
37+
- os: windows
38+
release: nightly
39+
python: 3.12
40+
- os: macos
41+
release: stable
42+
python: 3.10
43+
- os: macos
44+
release: nightly
45+
python: 3.13
3046
runs-on: ${{ format('{0}-latest', matrix.os) }}
3147
steps:
3248
- name: Checkout GitHub repo
@@ -47,7 +63,7 @@ jobs:
4763
- name: Set up Python
4864
uses: actions/setup-python@v5
4965
with:
50-
python-version: 3.8
66+
python-version: ${{ matrix.python }}
5167
- name: Install dependencies nightly non-Windows
5268
if: matrix.release == 'nightly' && matrix.os != 'windows'
5369
run: |

0 commit comments

Comments
 (0)