Skip to content

Major possible breaking fixes. #66

Major possible breaking fixes.

Major possible breaking fixes. #66

Workflow file for this run

# This workflow will install dependencies, reformat code with Black, and lint with flake8 using Python 3.8
name: Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-Python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black flake8
- name: Reformat code with Black
run: |
black .
- name: Lint with flake8
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics