Merge pull request #133 from amystamile-usgs/cmp-notebooks #2
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: Pull-Request-CI | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
Build-and-Test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
- name: Setup ENV | |
uses: conda-incubator/setup-miniconda@3b0f2504dd76ef23b6d31f291f4913fb60ab5ff3 | |
with: | |
miniforge-version: latest | |
use-mamba: true | |
channels: conda-forge | |
activate-environment: ale | |
environment-file: environment.yml | |
auto-activate-base: false | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
- name: Check build environment | |
run: | | |
conda list | |
- name: Install Python Package | |
run: | | |
python setup.py install | |
- name: Test Python Package | |
run: | | |
pytest -n4 |