CI #2859
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: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
schedule: | |
- cron: '0 0 * * *' # Daily “At 00:00” UTC | |
workflow_dispatch: # allows you to trigger the workflow run manually | |
jobs: | |
build: | |
if: | | |
github.repository == 'NCAR/ldcpy' | |
name: Build (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-latest'] | |
python-version: ['3.7', '3.8', '3.9'] | |
steps: | |
- name: Cancel previous runs | |
uses: styfle/cancel-workflow-action@0.11.0 | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v3 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
channels: conda-forge | |
channel-priority: strict | |
mamba-version: '*' | |
activate-environment: ldcpy # Defined in ci/environment.yml | |
auto-update-conda: false | |
python-version: ${{ matrix.python-version }} | |
environment-file: ci/environment.yml | |
- name: Install ldcpy | |
run: | | |
python -m pip install -e . | |
conda list | |
- name: Run Tests | |
run: | | |
pytest --cov=./ --cov-report=xml | |
- name: Upload code coverage to Codecov | |
uses: codecov/codecov-action@v3.1.1 | |
with: | |
file: ./coverage.xml | |
flags: unittests | |
env_vars: OS,PYTHON | |
name: codecov-umbrella | |
fail_ci_if_error: false | |
upstream-dev: | |
if: | | |
github.repository == 'NCAR/ldcpy' | |
name: upstream-dev-py39 | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- name: Cancel previous runs | |
uses: styfle/cancel-workflow-action@0.11.0 | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v3 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
channels: conda-forge | |
channel-priority: strict | |
mamba-version: '*' | |
activate-environment: ldcpy # Defined in ci/environment.yml | |
auto-update-conda: false | |
python-version: 3.9 | |
environment-file: ci/upstream-dev-environment.yml | |
- name: Install ldcpy | |
run: | | |
python -m pip install -e . | |
conda list | |
- name: Run Tests | |
run: | | |
pytest --cov=./ --cov-report=xml |