Skip to content

Commit 01c884e

Browse files
added version check
1 parent 964a19d commit 01c884e

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Version check
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
version:
12+
python-version: ["3.4","3.5", "3.6", 3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Set up Python ${{ version.python-version }}
16+
uses: actions/setup-python@v3
17+
with:
18+
python-version: ${{ version.python-version }}
19+
- name: Run tests
20+
run: |
21+
python -m unittest discover tests

0 commit comments

Comments
 (0)