summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorÁrni Dagur <arni@dagur.eu>2021-12-03 19:09:23 +0100
committerÁrni Dagur <arni@dagur.eu>2021-12-03 19:33:15 +0100
commit4f7feb9c85ac69524f0c14dbec07cfaaf9dbf02d (patch)
tree3f12c2d5a1b95e6a528ce1e36d4179b039681c00 /.github
parent5fdcc4f039bbf6dc1f73a8c9b6c523857b2cd088 (diff)
Run test suite on Python 3.10 as well
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml20
1 files changed, 11 insertions, 9 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8113bdf..da43d52 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -147,34 +147,36 @@ jobs:
147 manylinux: "2010", 147 manylinux: "2010",
148 target: "x86_64-unknown-linux-gnu", 148 target: "x86_64-unknown-linux-gnu",
149 arch: "x86_64", 149 arch: "x86_64",
150 python-version: "3.6"
150 }, 151 },
151 { 152 {
152 toolchain: "nightly", 153 toolchain: "nightly",
153 manylinux: "2010", 154 manylinux: "2010",
154 target: "x86_64-unknown-linux-gnu", 155 target: "x86_64-unknown-linux-gnu",
155 arch: "x86_64", 156 arch: "x86_64",
157 python-version: "3.6"
156 }, 158 },
157 { 159 {
158 toolchain: "stable", 160 toolchain: "stable",
159 manylinux: "2010", 161 manylinux: "2010",
160 target: "x86_64-unknown-linux-gnu", 162 target: "x86_64-unknown-linux-gnu",
161 arch: "x86_64", 163 arch: "x86_64",
164 python-version: "3.6"
165 },
166 {
167 toolchain: "stable",
168 manylinux: "2010",
169 target: "x86_64-unknown-linux-gnu",
170 arch: "x86_64",
171 python-version: "3.10"
162 }, 172 },
163 # FIXME: GitHub actions runs out of memory when this build is
164 # attempted.
165 # {
166 # toolchain: "stable",
167 # manylinux: "2010",
168 # target: "i686-unknown-linux-gnu",
169 # arch: "i686"
170 # },
171 ] 173 ]
172 steps: 174 steps:
173 - uses: actions/checkout@v2 175 - uses: actions/checkout@v2
174 176
175 - uses: actions/setup-python@v2 177 - uses: actions/setup-python@v2
176 with: 178 with:
177 python-version: 3.6 179 python-version: ${{ matrix.platform.python-version }}
178 180
179 - name: Build Wheels 181 - name: Build Wheels
180 run: | 182 run: |