Skip to content

Commit 23736b9

Browse files
authored
Update ci-test.yml (#18)
Added multiple python versions to CI yaml file.
1 parent e4fa740 commit 23736b9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci-test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,21 @@ on:
1313
workflow_dispatch:
1414

1515
jobs:
16-
python39:
16+
build:
1717
defaults:
1818
run:
1919
shell: bash -l {0}
2020
runs-on: ubuntu-latest
21+
strategy:
22+
matrix:
23+
python-version: ["3.9", "3.10", "3.11"]
2124

2225
steps:
2326
- uses: actions/checkout@v4
24-
- name: Set up Python 3.9
27+
- name: Set up Python ${{ matrix.python-version }}
2528
uses: actions/setup-python@v3
2629
with:
27-
python-version: '3.9'
30+
python-version: ${{ matrix.python-version }}
2831
- name: install deps
2932
run: |
3033
pip install -e .[whetstone,dev,examples]

0 commit comments

Comments
 (0)