Skip to content

bug fix: RuntimeError from NetCDF lib w/ zlib=True on vlens (#10) #43

bug fix: RuntimeError from NetCDF lib w/ zlib=True on vlens (#10)

bug fix: RuntimeError from NetCDF lib w/ zlib=True on vlens (#10) #43

Workflow file for this run

name: Lint and Test
on: [push]
jobs:
miniconda:
name: Miniconda ${{ matrix.os }} py ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: ncagg
environment-file: environment.yml
python-version: ${{ matrix.python-version }}
auto-activate-base: false
- name: Info
shell: bash -l {0}
run: |
conda info
conda list
- name: Lint
shell: bash -l {0}
run: |
conda install flake8
python -m flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
python -m flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run unit tests
shell: bash -l {0}
run: |
python -m unittest discover