Skip to content

Changes to enable running after change in ERA5 API #523

Changes to enable running after change in ERA5 API

Changes to enable running after change in ERA5 API #523

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: lagtraj
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install ncview
run: sudo apt-get install ncview
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ".[test]"
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v2
- name: Test with pytest
run: |
python -m pytest