Skip to content

Commit

Permalink
Try script
Browse files Browse the repository at this point in the history
  • Loading branch information
minhqdao committed Feb 27, 2024
1 parent 82e8bad commit 1d4b4f2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,13 @@ jobs:
with:
compiler: ${{ matrix.toolchain.compiler }}
version: ${{ matrix.toolchain.version }}
- run: ${{ steps.setup-fortran.outputs.fc }} /QV
- run: ${{ steps.setup-fortran.outputs.fc }} /what
- name: Check Fortran compiler version
run: |
if [[ ${{ matrix.os }} == 'windows-latest' && ${{ matrix.toolchain.compiler }} == 'intel' ]]; then
${{ steps.setup-fortran.outputs.fc }} /QV
else
${{ steps.setup-fortran.outputs.fc }} --version
fi
- uses: fortran-lang/setup-fpm@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 1d4b4f2

Please sign in to comment.