We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c117cae commit 569377cCopy full SHA for 569377c
.github/workflows/tests.yaml
@@ -55,12 +55,13 @@ jobs:
55
run: ctest -C ${{ matrix.build_type }} --output-on-failure
56
57
Python:
58
- name: Python ${{ matrix.os }}
+ name: Python ${{ matrix.python-versions }} ${{ matrix.os }}
59
runs-on: ${{ matrix.os }}
60
strategy:
61
fail-fast: false
62
matrix:
63
os: [ubuntu-latest, windows-latest]
64
+ python-versions: ['3.10', '3.11', '3.12', '3.13']
65
66
steps:
67
- name: Checkout
@@ -72,7 +73,7 @@ jobs:
72
73
- name: Setup Python Environment
74
uses: ./.github/actions/setup-python-env
75
with:
- python-version: '3.12'
76
+ python-version: ${{ matrix.python-versions }}
77
78
- name: Install Bindings
79
shell: bash
0 commit comments