Skip to content

Commit 0240bc3

Browse files
committed
feat: add python version
1 parent b1c2f82 commit 0240bc3

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- "3.8"
2626
- "3.9"
2727
- "3.10"
28+
- "3.11"
2829
fail-fast: false
2930

3031
steps:
@@ -70,17 +71,27 @@ jobs:
7071
with:
7172
name: coverage
7273
path: coverage
74+
7375
coverage-combine:
7476
needs:
7577
- test
7678
runs-on: ubuntu-latest
79+
strategy:
80+
matrix:
81+
python-version:
82+
- "3.7"
83+
- "3.8"
84+
- "3.9"
85+
- "3.10"
86+
- "3.11"
87+
fail-fast: false
7788

7889
steps:
7990
- uses: actions/checkout@v4
8091

8192
- uses: actions/setup-python@v4
8293
with:
83-
python-version: '3.8'
94+
python-version: ${{ matrix.python-version }}
8495

8596
- name: Get coverage files
8697
uses: actions/download-artifact@v3

0 commit comments

Comments
 (0)