Skip to content

CI

CI #192

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
paths-ignore:
- 'docs/**'
pull_request:
branches: [ "main" ]
paths-ignore:
- 'docs/**'
schedule:
- cron: "0 0 * * *"
jobs:
test:
name: ${{ matrix.python-version }}-build
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Setup micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ci/environment.yml
cache-environment: true
create-args: >-
python=${{matrix.python-version}}
- name: Install pangeo-forge-ndpyramid
run: |
python -m pip install -e ".[test]"
- name: Running Tests
run: |
python -m pytest --cov=./ --cov-report=xml --verbose