Skip to content

Commit

Permalink
Test all Pythons on Intel Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored and mariano54 committed Nov 22, 2021
1 parent 7eff269 commit a9618ee
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-test.yaml
Expand Up @@ -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
Expand All @@ -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')
Expand Down

0 comments on commit a9618ee

Please sign in to comment.