We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54e258c commit dae3b2cCopy full SHA for dae3b2c
1 file changed
.github/workflows/build.yml
@@ -65,7 +65,13 @@ jobs:
65
ln -sf /opt/homebrew/opt/llvm@${{ matrix.compiler-version }}/bin/flang \
66
/opt/homebrew/bin/flang
67
68
- - name: Install fpm
+ - name: Install fpm (macOS, from source)
69
+ if: runner.os == 'macOS'
70
+ run: |
71
+ brew install fpm
72
+
73
+ - name: Install fpm (Linux, from source)
74
+ if: runner.os == 'Linux'
75
uses: fortran-lang/setup-fpm@v7
76
with:
77
fpm-version: 'v0.13.0'
0 commit comments