Skip to content

Commit

Permalink
add conda test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Nov 3, 2023
1 parent 28802ab commit 2adea78
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/conda-pytest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Conda pytest
on: push

jobs:
push_to_registry:
name: Build docker file for testing
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2

- name: Install the repo
run: |
conda install -c conda-forge xesmf esmpy -y
where conda
export ESMFMKFILE='/opt/conda/lib/esmf.mk'
pip install -e .
- name: run pytest
run: pytest

0 comments on commit 2adea78

Please sign in to comment.