From a9618ee02b085d9914b715a3fafd097c1c3791bd Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Sat, 13 Nov 2021 19:39:41 -0500 Subject: [PATCH] Test all Pythons on Intel Linux --- .github/workflows/build-test.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yaml b/.github/workflows/build-test.yaml index 17f2dfc4e..8768c9c9e 100644 --- a/.github/workflows/build-test.yaml +++ b/.github/workflows/build-test.yaml @@ -4,12 +4,13 @@ on: [push, pull_request] jobs: build_wheels: - name: Build and Test on ${{ matrix.os }} + name: Build and Test on ${{ matrix.os }} CPython ${{ matrix.python }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macos-latest, ubuntu-latest] + python: ['3.7', '3.8', '3.9'] steps: - name: Cancel previous runs on the same branch @@ -24,7 +25,7 @@ jobs: - uses: actions/setup-python@v2 name: Install Python with: - python-version: '3.8' + python-version: ${{ matrix.python }} - name: Ubuntu build C++ and test with valgrind if: startsWith(matrix.os, 'ubuntu')