Skip to content

Remove all redundant things #252

Remove all redundant things

Remove all redundant things #252

Workflow file for this run

name: CI
on: push
jobs:
make-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
toolchain:
- { compiler: gcc, version: 13 }
- { compiler: intel, version: 2023.2 }
- { compiler: intel-classic, version: 2021.10 }
- { compiler: nvidia-hpc, version: 23.11 }
include:
- os: macos-latest
toolchain: { compiler: gcc, version: 13 }
- os: macos-13
toolchain: { compiler: intel-classic, version: 2021.10 }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: fortran-lang/setup-fortran@v1
id: setup-fortran
with:
compiler: ${{ matrix.toolchain.compiler }}
version: ${{ matrix.toolchain.version }}
- run: ${{ steps.setup-fortran.outputs.fc }} --version
- run: make test FC=${{ steps.setup-fortran.outputs.fc }}