Skip to content

Commit

Permalink
Adding additional matrix param for both os's and excluding invalid co…
Browse files Browse the repository at this point in the history
…mbinations.
  • Loading branch information
mwaxmonsky committed May 15, 2024
1 parent 0e00c17 commit 7d2af1d
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/capgen_unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,20 @@ on:

jobs:
unit_tests:
runs-on: ubuntu-latest
strategy:
matrix:
fortran-compiler: [gfortran-9, gfortran-10, gfortran-11, gfortran-12, gfortran-13]
os: [ ubuntu-22.04, ubuntu-24.04 ]
fortran-compiler: [ gfortran-9, gfortran-10, gfortran-11, gfortran-12, gfortran-13, gfortran-14 ]
exclude:
os: ubuntu-24.04
fortran-compiler: gfortran-9
os: ubuntu-24.04
fortran-compiler: gfortran-10
os: ubuntu-24.04
fortran-compiler: gfortran-11
os: ubuntu-22.04
fortran-compiler: gfortran-14
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: update repos and install dependencies
Expand Down

0 comments on commit 7d2af1d

Please sign in to comment.