Skip to content

FIx reading grids with no frequency #33

FIx reading grids with no frequency

FIx reading grids with no frequency #33

Workflow file for this run

name: build
on:
push:
paths-ignore:
- 'docs/**'
- '.github/workflows/build-docs.yml'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: |
python -m pip install --upgrade pip
pip install flake8 tox tox-gh-actions virtualenv
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
if: matrix.python == 3.8
with:
env_vars: OS,PYTHON
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
verbose: true