diff options
| author | Inada Naoki <songofacandy@gmail.com> | 2021-11-16 14:55:36 +0900 |
|---|---|---|
| committer | Inada Naoki <songofacandy@gmail.com> | 2021-11-16 14:55:36 +0900 |
| commit | 17a108901127306195477a2565bf1e67dc85265c (patch) | |
| tree | 6247f130ccced69f5549c509dd9f831df5f12b4a /.github | |
| parent | 9b84e490e7c78ac9bbd76dcf9ce71c1d0c978d81 (diff) | |
| download | msgpack-python-17a108901127306195477a2565bf1e67dc85265c.tar.gz | |
Support Python 3.10 and Drop Python 3.5
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/linux.yml | 11 |
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: |
