Skip to content

Commit 79e00cf

Browse files
committed
Test with multiple python versions.
1 parent d30c1bb commit 79e00cf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: .github/workflows/test-ubuntu.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python: [python, python3]
12+
python: ['3.8.18', '3.9.21', '3.10.15', '3.11.11', '3.12.9', '3.13.2']
1313
cxx: [g++, clang++]
1414
std: [c++98, c++11, c++14, c++17]
1515
include:
@@ -27,6 +27,9 @@ jobs:
2727

2828
steps:
2929
- uses: actions/checkout@v4
30+
- uses: actions/setup-python@v5
31+
with:
32+
python-version: ${{ matrix.python }}
3033

3134
- name: build
3235
run: |

0 commit comments

Comments
 (0)