We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88ab3f3 commit acffdd4Copy full SHA for acffdd4
.github/workflows/ci.yaml
@@ -100,6 +100,15 @@ jobs:
100
steps:
101
- name: Check out repository
102
uses: actions/checkout@v4
103
+ - name: Install Fortran compiler - MacOS
104
+ # When building on Mac, we need to have a Fortran compiler
105
+ if: ${{ startsWith(matrix.os, 'macos') }}
106
+ uses: fortran-lang/setup-fortran@v1
107
+ id: setup-fortran-macos
108
+ with:
109
+ # TODO: figure out whether we need/want to use other compilers too
110
+ compiler: "gcc"
111
+ version: "13"
112
- uses: ./.github/actions/setup
113
with:
114
python-version: ${{ matrix.python-version }}
0 commit comments