summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2022-05-24 20:13:07 +0900
committerGitHub <noreply@github.com>2022-05-24 20:13:07 +0900
commit63837a44d855017f1b2f667afa5ac684fd65591d (patch)
treedc4b2beb69b6c064247c8317d50e60ae67e5ddd6
parent500a238028bdebe123b502b07769578b5f0e8a3a (diff)
downloadmsgpack-python-63837a44d855017f1b2f667afa5ac684fd65591d.tar.gz
ci: Update action versions. (#507)
-rw-r--r--.github/workflows/test.yml7
-rw-r--r--.github/workflows/wheel.yml6
2 files changed, 6 insertions, 7 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 2a01926..2a796aa 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -10,17 +10,17 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, windows-2022, macos-10.15]
- py: ["3.10", "3.9", "3.8", "3.7", "3.6"]
+ py: ["3.11-dev", "3.10", "3.9", "3.8", "3.7", "3.6"]
runs-on: ${{ matrix.os }}
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Set up Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v3
with:
python-version: ${{ matrix.py }}
cache: "pip"
@@ -28,7 +28,6 @@ jobs:
- name: Build
shell: bash
run: |
- python -m pip install -U pip
pip install -r requirements.txt pytest
make cython
pip install .
diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml
index 5627b5f..541654d 100644
--- a/.github/workflows/wheel.yml
+++ b/.github/workflows/wheel.yml
@@ -14,7 +14,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Set up QEMU
if: runner.os == 'Linux'
@@ -23,7 +23,7 @@ jobs:
platforms: arm64
- name: Set up Python 3.9
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v3
with:
python-version: 3.9
cache: "pip"
@@ -35,7 +35,7 @@ jobs:
make cython
- name: Build
- uses: pypa/cibuildwheel@v2.2.2
+ uses: pypa/cibuildwheel@v2.5.0
env:
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {package}/test"