Skip to content

fix: Resolve issues causing gsod_by_year pipeline to break in noaa dag. #1900

fix: Resolve issues causing gsod_by_year pipeline to break in noaa dag.

fix: Resolve issues causing gsod_by_year pipeline to break in noaa dag. #1900

Workflow file for this run

name: Lint Python
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
- name: Install dependencies
run:
python -m pip install flake8 isort nbqa
- uses: psf/black@stable
with:
options: "--check"
version: "22.3.0"
- name: Run Flake8 Linter
run: flake8
- name: Run isort
run: isort --check-only --profile black --diff .
- name: Run flake8 on notebooks
run: nbqa flake8 .