Skip to content

Commit 53d433e

Browse files
Add many python versions for auto build
1 parent 45c3fe6 commit 53d433e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ jobs:
1616
build:
1717

1818
runs-on: ubuntu-latest
19-
19+
strategy:
20+
matrix:
21+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
2022
steps:
2123
- uses: actions/checkout@v3
2224
- name: Set up Python 3.10
2325
uses: actions/setup-python@v3
2426
with:
25-
python-version: "3.10"
27+
python-version: ${{ matrix.python-version }}
2628
- name: Install dependencies
2729
run: |
2830
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)