Update CHANGELOG.md and version to 0.6.1 #238
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] | |
jobs: | |
Build: | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
toolchain: | |
- {compiler: gcc} | |
- {compiler: intel} | |
- {compiler: nvidia-hpc} | |
exclude: | |
- os: windows-latest | |
toolchain: {compiler: nvidia-hpc} | |
- os: windows-latest | |
toolchain: {compiler: intel} | |
- os: macos-latest | |
toolchain: {compiler: nvidia-hpc} | |
- os: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Fortran Package Manager (fpm) | |
uses: fortran-lang/setup-fpm@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Fortran Compiler | |
uses: fortran-lang/setup-fortran@main | |
id: setup-fortran | |
with: | |
compiler: ${{ matrix.toolchain.compiler }} | |
version: ${{ matrix.toolchain.version }} | |
- name: Run Tests (Debug) | |
run: | | |
fpm test --profile debug --compiler ${{ env.FC}} | |
env: | |
FC: ${{ steps.setup-fortran.outputs.fc }} | |
- name: Run Tests (Release) | |
run: | | |
fpm test --profile release --compiler ${{ env.FC}} | |
env: | |
FC: ${{ steps.setup-fortran.outputs.fc }} |