we are not testing this code here #259
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: Check Style | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Check out | |
uses: actions/checkout@v2 | |
- name: Dependencies | |
run: pip install flake8 | |
- name: Flake8 | |
run: flake8 --max-line-length=120 --max-complexity=16 --ignore=E22,E241,E741,E203 src tests | |