We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a849d9 commit 82a4b8dCopy full SHA for 82a4b8d
1 file changed
.github/workflows/ci.yml
@@ -103,7 +103,18 @@ jobs:
103
python-version: ${{ matrix.python }}
104
105
- name: Setup Fortran
106
+ if: runner.os != 'Windows'
107
uses: fortran-lang/setup-fortran@v1
108
+ with:
109
+ compiler: gcc
110
+ version: ${{ env.GCC_V }}
111
+
112
+ - name: Setup Fortran (Windows)
113
+ if: runner.os == 'Windows'
114
+ uses: fortran-lang/setup-fortran@v1
115
116
+ compiler: intel
117
+ version: latest
118
119
- name: Install project
120
working-directory: modflow-devtools
0 commit comments