correct declared units of dust deposition flux #51
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: Build and test | |
on: push | |
jobs: | |
gfortran: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v2 | |
with: | |
path: fabm-pisces | |
- name: Clone FABM | |
uses: actions/checkout@v2 | |
with: | |
path: fabm | |
repository: fabm-model/fabm | |
- name: Build | |
run: | | |
mkdir $GITHUB_WORKSPACE/build | |
cd $GITHUB_WORKSPACE/build | |
cmake $GITHUB_WORKSPACE/fabm -DFABM_HOST=gotm -DFABM_INSTITUTES=pisces -DFABM_PISCES_BASE=$GITHUB_WORKSPACE/fabm-pisces | |
make |