working baroclinic test case example #17
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: "Main unit tests with mpich" | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] | |
# cancel running jobs if theres a newer push | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
main_unit_tests: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/noaa-gfdl/pace_mpich:3.8 | |
steps: | |
- name: Checkout Pace repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: setup env and run tests (test) | |
run: | | |
cp /home/scripts/setup_env.sh . && chmod +x setup_env.sh | |
cp /home/scripts/run_tests.sh . && chmod +x run_tests.sh | |
./setup_env.sh | |
./run_tests.sh |