Skip to content

Commit

Permalink
Install PyGMT in the cache_data workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Jun 2, 2021
1 parent 29367be commit 4ea5727
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/cache_data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ jobs:
shell: bash -l {0}

steps:
# Checkout current git repository
- name: Checkout
uses: actions/[email protected]
with:
# fecth all history so that setuptools-scm works
fetch-depth: 0

# Setup Miniconda
- name: Setup Miniconda
uses: conda-incubator/[email protected]
Expand All @@ -26,7 +33,14 @@ jobs:

# Install GMT
- name: Install GMT
run: conda install -c conda-forge/label/dev gmt=6.2.0rc2
run: conda install conda-forge/label/dev::gmt=6.2.0rc2 \
numpy pandas xarray netCDF4 packaging

# Install the package that we want to test
- name: Install the package
run: |
python setup.py sdist --formats=zip
pip install dist/*
# Download remote files
- name: Download remote data
Expand Down

0 comments on commit 4ea5727

Please sign in to comment.