summaryrefslogtreecommitdiff
path: root/.github/workflows/linux.yml
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2021-11-16 16:19:47 +0900
committerGitHub <noreply@github.com>2021-11-16 16:19:47 +0900
commitb3f72541925cda3b018942db45a59936184727e3 (patch)
treecc292c34c376f7ee2065fc215a1ba322702c45f5 /.github/workflows/linux.yml
parent9b84e490e7c78ac9bbd76dcf9ce71c1d0c978d81 (diff)
downloadmsgpack-python-b3f72541925cda3b018942db45a59936184727e3.tar.gz
Support Python 3.10 and Drop Python 3.5 (#487)
* linux: Use manylinux2014 * mac: Drop Python 3.6 too
Diffstat (limited to '.github/workflows/linux.yml')
-rw-r--r--.github/workflows/linux.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index f9707b1..811bc13 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -47,6 +47,17 @@ jobs:
pytest -v test
+ - name: Set up Python 3.10
+ uses: actions/setup-python@v1
+ with:
+ python-version: "3.10"
+
+ - name: Run test (3.10)
+ run: |
+ pip install pytest
+ pip install -v msgpack --only-binary :all: --no-index -f dist/wheelhouse
+ pytest -v test
+
- name: Set up Python 3.9
uses: actions/setup-python@v1
with: