CI #1563
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "*" | |
schedule: | |
- cron: "0 13 * * 1" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build (${{ matrix.python-version }} | ${{ matrix.os }}) | |
if: github.repository == 'xgcm/xgcm' | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 60 | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create conda environment | |
uses: mamba-org/setup-micromamba@v2 | |
with: | |
micromamba-version: '1.5.6-0' # any version from https://github.com/mamba-org/micromamba-releases | |
environment-file: ci/environment.yml | |
create-args: >- | |
python=${{ matrix.python-version }} | |
post-cleanup: 'all' | |
cache-environment: true | |
cache-downloads: true | |
- name: Install XGCM | |
run: | | |
python -m pip install -e . --no-deps | |
conda list | |
- name: Run Tests | |
run: | | |
pytest -n auto --cov=./ --cov-report=xml | |
- name: Upload code coverage to Codecov | |
uses: codecov/codecov-action@v4.6.0 | |
with: | |
file: ./coverage.xml | |
flags: unittests | |
env_vars: OS,PYTHON | |
name: codecov-umbrella | |
fail_ci_if_error: false | |
core-deps-dev: | |
name: Build (core-dependencies) | |
if: github.repository == 'xgcm/xgcm' | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create conda environment | |
uses: mamba-org/setup-micromamba@v2 | |
with: | |
micromamba-version: '1.5.6-0' # any version from https://github.com/mamba-org/micromamba-releases | |
environment-file: ci/environment-core-deps.yml | |
create-args: >- | |
python=3.10 | |
post-cleanup: 'all' | |
cache-environment: true | |
cache-downloads: true | |
- name: Install XGCM | |
run: | | |
python -m pip install -e . --no-deps | |
conda list | |
- name: Run Tests | |
run: | | |
pytest -n auto | |
upstream-dev: | |
name: Build (upstream-dev) | |
if: github.repository == 'xgcm/xgcm' | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create conda environment | |
uses: mamba-org/setup-micromamba@v2 | |
with: | |
micromamba-version: '1.5.6-0' # any version from https://github.com/mamba-org/micromamba-releases | |
environment-file: ci/environment-upstream-dev.yml | |
create-args: >- | |
python=3.12 | |
post-cleanup: 'all' | |
cache-environment: true | |
cache-downloads: true | |
- name: Install XGCM | |
run: | | |
python -m pip install -e . --no-deps | |
conda list | |
- name: Run Tests | |
run: | | |
pytest -n auto |