Skip to content

Commit 43c2d04

Browse files
authored
Merge pull request #713 from NVIDIA/am/py3.12
Run tests for several py versions
2 parents 0c2633d + 44fe881 commit 43c2d04

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,21 @@ jobs:
5555

5656
runs-on: ubuntu-latest
5757

58+
strategy:
59+
matrix:
60+
python-version: ["3.10", "3.12"]
61+
fail-fast: false
62+
5863
steps:
5964
- name: Checkout code
6065
uses: actions/checkout@v4
6166
with:
6267
fetch-depth: 0
6368

64-
- name: Set up Python
69+
- name: Set up Python ${{ matrix.python-version }}
6570
uses: actions/setup-python@v5
71+
with:
72+
python-version: ${{ matrix.python-version }}
6673

6774
- name: Install dependencies
6875
run: pip install '.[dev]'

0 commit comments

Comments
 (0)