added choice of bbox in quicklook, added models in model_cfg, added s… #700
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: lint | |
on: [push] | |
jobs: | |
tests: | |
name: pytests (${{ matrix.os }} - ${{ matrix.python-version }}, Mambaforge) | |
runs-on: ${{ matrix.os }}-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
matrix: | |
os: [ "ubuntu" ] | |
python-version: [ '3.10' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
environment-file: environment.yml | |
python-version: ${{ matrix.python-version }} | |
miniforge-version: latest | |
miniforge-variant: Mambaforge | |
- name: Lint with pylint | |
run: | | |
pylint --fail-under=9 wavy | |