summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-11-05 09:31:45 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-11-05 12:15:17 -0400
commit825ff0fa89d9dedff43a3307a9219d4838bfc200 (patch)
treebeeb4bd47381744cdb0e704015867bac31d8f2b4
parent164daec6d4f13a9cf02b207156a2cb587ca685b4 (diff)
downloadpython-coveragepy-git-nedbat/run-tests-when-making-kits.tar.gz
-rw-r--r--.github/workflows/kit.yml15
1 files changed, 12 insertions, 3 deletions
diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml
index 39a9c312..8cb61270 100644
--- a/.github/workflows/kit.yml
+++ b/.github/workflows/kit.yml
@@ -22,10 +22,20 @@ env:
jobs:
wheels:
- name: "Build wheels on ${{ matrix.os }}"
+ name: "Build ${{ matrix.cibw_build }} ${{ matrix.os }} wheels"
runs-on: ${{ matrix.os }}
strategy:
matrix:
+ os:
+ - ubuntu-latest
+ - macos-latest
+ - windows-latest
+ cibw_build:
+ - cp36
+ - cp37
+ - cp38
+ - cp39
+ - cp310
include:
- os: ubuntu-latest
cibw_arch: x86_64 i686 aarch64
@@ -56,8 +66,7 @@ jobs:
- name: "Build wheels"
env:
- # Don't build wheels for PyPy.
- CIBW_SKIP: pp*
+ CIBW_BUILD: ${{ matrix.cibw_build }}-*
CIBW_ARCHS: ${{ matrix.cibw_arch }}
CIBW_ENVIRONMENT: PIP_DISABLE_PIP_VERSION_CHECK=1
CIBW_TEST_COMMAND: python -c "from coverage.tracer import CTracer; print('CTracer OK!')"