Skip to content

Fix lint errors

Fix lint errors #2

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/[email protected]
- name: Set up Python environment
uses: actions/[email protected]
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install nbqa flake8
- name: Run flake8 on notebooks
run: |
nbqa flake8 *.ipynb
- name: Run flake8
run: |
flake8 .