@@ -3,12 +3,33 @@ name: Python package
3
3
on : [push]
4
4
5
5
jobs :
6
+ test-py36 :
7
+ runs-on : windows-2019
8
+ strategy :
9
+ max-parallel : 1
10
+ matrix :
11
+ python-version : ["3.6"]
12
+
13
+ steps :
14
+ - uses : actions/checkout@v1
15
+ - name : Set up Python ${{ matrix.python-version }}
16
+ uses : actions/setup-python@v1
17
+ with :
18
+ python-version : ${{ matrix.python-version }}
19
+ - name : Install dependencies
20
+ run : |
21
+ python -m pip install --upgrade pip
22
+ python setup.py install
23
+ - name : Test with pytest
24
+ run : |
25
+ pip install pytest
26
+ pytest
6
27
test-linux :
7
28
runs-on : ubuntu-latest
8
29
strategy :
9
30
max-parallel : 3
10
31
matrix :
11
- python-version : ["3.6 ", "3.7 ", "3.8 ", "3.9 ", "3.10 "]
32
+ python-version : ["3.7 ", "3.8 ", "3.9 ", "3.10 ", "3.11 "]
12
33
13
34
steps :
14
35
- uses : actions/checkout@v1
30
51
strategy :
31
52
max-parallel : 3
32
53
matrix :
33
- python-version : ["3.7", "3.8", "3.9", "3.10"]
54
+ python-version : ["3.7", "3.8", "3.9", "3.10", "3.11" ]
34
55
35
56
steps :
36
57
- uses : actions/checkout@v1
52
73
strategy :
53
74
max-parallel : 3
54
75
matrix :
55
- python-version : ["3.7", "3.8", "3.9", "3.10"]
76
+ python-version : ["3.7", "3.8", "3.9", "3.10", "3.11" ]
56
77
57
78
steps :
58
79
- uses : actions/checkout@v1
0 commit comments