Changed get_remote_files_cmems so it is also compatible with use of t… #568
Workflow file for this run
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 | |