Features: string bracketing, CSV operators, and JSON array value reader #59
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
Build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-12, ubuntu-24.04] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: fortran-lang/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Dependencies on Ubuntu | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
sudo apt update | |
sudo apt install -y build-essential gfortran-14 g++-14 | |
- name: Install Dependencies on macOS | |
if: contains(matrix.os, 'macos') | |
run: | | |
brew install gfortran | |
- name: Build and Run unit tests | |
run: | | |
fpm test --compiler gfortran-14 |