Update flake8 linter to ignore databricks notebook files and focus on… #2
This file contains hidden or 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: CI | |
| on: [push] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - run: pip install flake8 | |
| - run: flake8 user_post_emulators/ --count --max-line-length=120 --statistics --ignore=W292,W293,W391,F841,E231,E305 |