Test EA Python Envt Mac, Linux, Windows #34
Workflow file for this run
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: 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" |