summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2021-11-16 14:57:53 +0900
committerInada Naoki <songofacandy@gmail.com>2021-11-16 14:57:53 +0900
commit86c674440fb67eddf7dc41384ae8dc58451d33ce (patch)
tree1bc48e4f9dc32ece52c2441e595cc81e09f6d22a
parent17a108901127306195477a2565bf1e67dc85265c (diff)
downloadmsgpack-python-86c674440fb67eddf7dc41384ae8dc58451d33ce.tar.gz
mac and win
-rw-r--r--.github/workflows/mac.yml17
-rw-r--r--.github/workflows/windows.yaml14
2 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml
index 78d944c..94ab099 100644
--- a/.github/workflows/mac.yml
+++ b/.github/workflows/mac.yml
@@ -35,6 +35,23 @@ jobs:
pytest -v test
+ - name: Set up Python 3.10
+ uses: actions/setup-python@v1
+ with:
+ python-version: "3.10"
+
+ - name: Build wheel
+ run: |
+ pip install setuptools wheel
+ python setup.py bdist_wheel
+
+ - name: Run test
+ run: |
+ pip install pytest
+ pip install -v msgpack --only-binary :all: -f dist/ --no-index
+ pytest -v test
+
+
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml
index 139a5a6..debe074 100644
--- a/.github/workflows/windows.yaml
+++ b/.github/workflows/windows.yaml
@@ -77,6 +77,20 @@ jobs:
run: |
ci/runtests.sh
+ - name: Python 3.10 (amd64)
+ env:
+ PYTHON: "py -3.10-64"
+ shell: bash
+ run: |
+ ci/runtests.sh
+
+ - name: Python 3.10 (x86)
+ env:
+ PYTHON: "py -3.10-32"
+ shell: bash
+ run: |
+ ci/runtests.sh
+
- name: Upload Wheels
uses: actions/upload-artifact@v1
with: