From e8be853744e43428f0694c7490cee581915df459 Mon Sep 17 00:00:00 2001 From: JDBetteridge Date: Wed, 23 Nov 2022 11:27:29 +0000 Subject: [PATCH] Re-enable matrix strategy --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b8d909a21..bf9246734 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,11 @@ on: jobs: test: runs-on: ubuntu-latest - # strategy: - # # Don't immediately kill all if one Python version fails - # fail-fast: false - # matrix: - # python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + strategy: + # Don't immediately kill all if one Python version fails + fail-fast: false + matrix: + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] env: CC: mpicc PETSC_DIR: ${{ github.workspace }}/petsc @@ -37,7 +37,7 @@ jobs: - name: Set correct Python version uses: actions/setup-python@v2 with: - python-version: '3.8' # ${{ matrix.python-version }} + python-version: ${{ matrix.python-version }} - name: Clone PETSc uses: actions/checkout@v2