Actions: Add Python 3.9

This commit is contained in:
Inada Naoki 2020-12-11 19:31:24 +09:00
parent d893697eab
commit edd5603661
3 changed files with 42 additions and 0 deletions

View file

@ -47,6 +47,17 @@ jobs:
pytest -v test
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Run test (3.9)
run: |
pip install pytest
pip install -v msgpack --only-binary :all: --no-index -f dist/wheelhouse
pytest -v test
- name: Set up Python 3.7
uses: actions/setup-python@v1
with: