File tree Expand file tree Collapse file tree 3 files changed +42
-0
lines changed Expand file tree Collapse file tree 3 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 47
47
pytest -v test
48
48
49
49
50
+ - name : Set up Python 3.9
51
+ uses : actions/setup-python@v1
52
+ with :
53
+ python-version : 3.9
54
+
55
+ - name : Run test (3.9)
56
+ run : |
57
+ pip install pytest
58
+ pip install -v msgpack --only-binary :all: --no-index -f dist/wheelhouse
59
+ pytest -v test
60
+
50
61
- name : Set up Python 3.7
51
62
uses : actions/setup-python@v1
52
63
with :
Original file line number Diff line number Diff line change 35
35
pytest -v test
36
36
37
37
38
+ - name : Set up Python 3.9
39
+ uses : actions/setup-python@v1
40
+ with :
41
+ python-version : " 3.9"
42
+
43
+ - name : Build wheel
44
+ run : |
45
+ pip install setuptools wheel
46
+ python setup.py bdist_wheel
47
+
48
+ - name : Run test
49
+ run : |
50
+ pip install pytest
51
+ pip install -v msgpack --only-binary :all: -f dist/ --no-index
52
+ pytest -v test
53
+
54
+
38
55
- name : Set up Python 3.7
39
56
uses : actions/setup-python@v1
40
57
with :
Original file line number Diff line number Diff line change 63
63
run : |
64
64
ci/runtests.sh
65
65
66
+ - name : Python 3.9 (amd64)
67
+ env :
68
+ PYTHON : " py -3.9-64"
69
+ shell : bash
70
+ run : |
71
+ ci/runtests.sh
72
+
73
+ - name : Python 3.9 (x86)
74
+ env :
75
+ PYTHON : " py -3.9-32"
76
+ shell : bash
77
+ run : |
78
+ ci/runtests.sh
79
+
66
80
- name : Upload Wheels
67
81
uses : actions/upload-artifact@v1
68
82
with :
You can’t perform that action at this time.
0 commit comments