Skip to content

Commit c40b082

Browse files
committed
updated ci
1 parent 316960b commit c40b082

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,18 @@ jobs:
99
build-test:
1010
name: Build and run test
1111
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: ["3.8","3.9","3.10"]
1215
steps:
1316
-
1417
name: Checkout
1518
uses: actions/checkout@v3
1619
-
17-
name: Setup python 3.8.10
20+
name: Setup python ${{ matrix.python-version }}
1821
uses: actions/setup-python@v3
1922
with:
20-
python-version: "3.8.10"
23+
python-version: ${{ matrix.python-version }}
2124
-
2225
name: Setup build env
2326
run: |

0 commit comments

Comments
 (0)