Minor changes to plots (reviewer comments) #307
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: PyTests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Python 3 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
- uses: s-weigand/setup-conda@v1 | |
with: | |
python-version: '3.10' | |
conda-channels: anaconda, conda-forge | |
activate-conda: true | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
make develop | |
pip install pytest | |
# conda install cartopy | |
- name: Run tests with pytest | |
run: | | |
make test |