Merge pull request #272 from Hallberg-NOAA/fix_dev_ncar_20240319 #373
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: Code coverage | |
on: [push, pull_request] | |
jobs: | |
build-coverage: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: .testing | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: ./.github/actions/ubuntu-setup | |
- uses: ./.github/actions/testing-setup | |
- name: Compile file parser unit tests | |
run: make -j build/unit/test_MOM_file_parser | |
- name: Run file parser unit tests | |
run: make run.cov.unit | |
- name: Compile unit testing | |
run: make -j build.unit | |
- name: Run (single processor) unit tests | |
run: make run.unit | |
- name: Report unit test coverage to CI (PR) | |
if: github.event_name == 'pull_request' | |
run: make report.cov.unit REQUIRE_COVERAGE_UPLOAD=true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Report unit test coverage to CI (Push) | |
if: github.event_name != 'pull_request' | |
run: make report.cov.unit | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Compile ocean-only MOM6 with code coverage | |
run: make -j build/cov/MOM6 | |
- name: Run coverage tests | |
run: make -j -k run.cov | |
- name: Report coverage to CI (PR) | |
if: github.event_name == 'pull_request' | |
run: make report.cov REQUIRE_COVERAGE_UPLOAD=true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Report coverage to CI (Push) | |
if: github.event_name != 'pull_request' | |
run: make report.cov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |