V1.0.4 #27
Workflow file for this run
This file contains hidden or 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, pull_request] | |
| jobs: | |
| gcc-build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| gcc_v: [12] # 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@v1 | |
| - 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.10.1' | |
| - name: Build COLLECTIONS | |
| run: | | |
| gfortran --version | |
| fpm build | |
| - name: Run tests | |
| run: | | |
| gfortran --version | |
| fpm test |