add interface-limit-2 #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: fpm | |
on: | |
push: | |
paths: | |
- ".github/workflows/fpm.yml" | |
- "src/**.f90" | |
- "fpm.toml" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/fpm.yml" | |
- "src/**.f90" | |
- "fpm.toml" | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
gcc_v: [11] # Version of GFortran we want to use. | |
include: | |
- os: ubuntu-latest | |
os-arch: linux-x86_64 | |
env: | |
FC: gfortran | |
GCC_V: ${{ matrix.gcc_v }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install GFortran Linux | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${GCC_V} 100 \ | |
--slave /usr/bin/gfortran gfortran /usr/bin/gfortran-${GCC_V} \ | |
--slave /usr/bin/gcov gcov /usr/bin/gcov-${GCC_V} | |
- name: Install fpm | |
uses: fortran-lang/setup-fpm@v5 | |
with: | |
fpm-version: 'v0.9.0' | |
- name: Build & Test | |
run: | | |
gfortran --version | |
fpm build | |
fpm test |