Skip to content

add blueyellowred colormap(#200) #903

add blueyellowred colormap(#200)

add blueyellowred colormap(#200) #903

Workflow file for this run

name: CI
# Trigger CI on pushes and pull requests to main branch
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
# Define jobs
jobs:
# Job 1: Check dependencies and installation
check_dependencies:
uses: access-nri/pyISSM/.github/workflows/check-dependencies.yml@main
# Job 2: Build ISSM
build_issm:
uses: access-nri/pyISSM/.github/workflows/build-issm.yml@main
# Job 3: Build ISSM AD
build_issm_ad:
uses: access-nri/pyISSM/.github/workflows/build-issm-ad.yml@main
# Job 4: Run ISSM tests
issm_tests:
needs: build_issm
uses: access-nri/pyISSM/.github/workflows/issm-tests.yml@main
with:
build-type: "issm"
test-args: "--range 1:999"
# Job 5: Run ISSM AD tests
issm_ad_tests:
needs: build_issm_ad
uses: access-nri/pyISSM/.github/workflows/issm-tests.yml@main
with:
build-type: "issm-AD"
test-args: "--range 3015:3481"
# Job 6: Test conda environment and pyISSM installation
conda_env_test:
needs: build_issm
uses: access-nri/pyISSM/.github/workflows/conda-issm-tests.yml@main
with:
build-type: "issm"
test-args: "--range 1:999"
# Job 7: Run pytest unit tests
pytest_unit:
needs: build_issm
uses: access-nri/pyISSM/.github/workflows/pytest-unit.yml@main
with:
build-type: "issm"