commit 4f7feb9c85ac69524f0c14dbec07cfaaf9dbf02d
parent 5fdcc4f039bbf6dc1f73a8c9b6c523857b2cd088
Author: Árni Dagur <arni@dagur.eu>
Date: Fri, 3 Dec 2021 19:09:23 +0100
Run test suite on Python 3.10 as well
Diffstat:
1 file changed, 11 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -147,34 +147,36 @@ jobs:
manylinux: "2010",
target: "x86_64-unknown-linux-gnu",
arch: "x86_64",
+ python-version: "3.6"
},
{
toolchain: "nightly",
manylinux: "2010",
target: "x86_64-unknown-linux-gnu",
arch: "x86_64",
+ python-version: "3.6"
},
{
toolchain: "stable",
manylinux: "2010",
target: "x86_64-unknown-linux-gnu",
arch: "x86_64",
+ python-version: "3.6"
+ },
+ {
+ toolchain: "stable",
+ manylinux: "2010",
+ target: "x86_64-unknown-linux-gnu",
+ arch: "x86_64",
+ python-version: "3.10"
},
- # FIXME: GitHub actions runs out of memory when this build is
- # attempted.
- # {
- # toolchain: "stable",
- # manylinux: "2010",
- # target: "i686-unknown-linux-gnu",
- # arch: "i686"
- # },
]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
- python-version: 3.6
+ python-version: ${{ matrix.platform.python-version }}
- name: Build Wheels
run: |