Skip to content

Test EA Python Envt Mac, Linux, Windows #34

Test EA Python Envt Mac, Linux, Windows

Test EA Python Envt Mac, Linux, Windows #34

Workflow file for this run

name: Test EA Python Envt Mac, Linux, Windows
on: workflow_dispatch
jobs:
runtests:
name: conda (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-20.04"
- "macos-latest-large"
- "macos-latest-xlarge"
- "windows-latest"
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/[email protected]
with:
ref: ${{ github.head_ref || github.ref_name }}
- uses: conda-incubator/[email protected]
with:
auto-activate-base: false
environment-file: environment.yml
activate-environment: earth-analytics-python
- run: conda list
- run: python -c "import earthpy"
- run: python -c "import geopandas"
- run: python -c "import rioxarray"