Skip to content

added National Water Center as a new subcenter (18) to grib^Call_tabl… #12

added National Water Center as a new subcenter (18) to grib^Call_tabl…

added National Water Center as a new subcenter (18) to grib^Call_tabl… #12

Workflow file for this run

name: MacOS
on:
push:
branches:
- develop
pull_request:
branches:
- develop
# Cancel in-progress workflows when pushing to a branch
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
MacOS:
runs-on: macos-latest
env:
FC: gfortran-11
CC: gcc-11
steps:
- name: checkout
uses: actions/checkout@v4
with:
path: g2tmpl
- name: build
run: |
cd g2tmpl
mkdir build
cd build
cmake ..
make -j2
- name: test
run: |
cd $GITHUB_WORKSPACE/g2tmpl/build
ctest --verbose --output-on-failure --rerun-failed