summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux.yml11
-rw-r--r--.github/workflows/mac.yml12
-rw-r--r--.github/workflows/windows.yaml14
3 files changed, 31 insertions, 6 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:
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml
index 78d944c..4efe2ca 100644
--- a/.github/workflows/mac.yml
+++ b/.github/workflows/mac.yml
@@ -35,10 +35,10 @@ jobs:
pytest -v test
- - name: Set up Python 3.9
+ - name: Set up Python 3.10
uses: actions/setup-python@v1
with:
- python-version: "3.9"
+ python-version: "3.10"
- name: Build wheel
run: |
@@ -52,10 +52,10 @@ jobs:
pytest -v test
- - name: Set up Python 3.7
+ - name: Set up Python 3.9
uses: actions/setup-python@v1
with:
- python-version: "3.7"
+ python-version: "3.9"
- name: Build wheel
run: |
@@ -69,10 +69,10 @@ jobs:
pytest -v test
- - name: Set up Python 3.6
+ - name: Set up Python 3.7
uses: actions/setup-python@v1
with:
- python-version: "3.6"
+ python-version: "3.7"
- name: Build wheel
run: |
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: