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 4747 pytest -v test
4848
4949
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+
5061 - name : Set up Python 3.7
5162 uses : actions/setup-python@v1
5263 with :
Original file line number Diff line number Diff line change 3535 pytest -v test
3636
3737
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+
3855 - name : Set up Python 3.7
3956 uses : actions/setup-python@v1
4057 with :
Original file line number Diff line number Diff line change 6363 run : |
6464 ci/runtests.sh
6565
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+
6680 - name : Upload Wheels
6781 uses : actions/upload-artifact@v1
6882 with :
You can’t perform that action at this time.
0 commit comments