Skip to content

Update README.md

Update README.md #28

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/[email protected]
with:
python-version: 3.9
- name: Install project dependencies
run: |
pip install --upgrade pip
pip install -e .[lint]
- name: Run Flake8
run: flake8 --ignore E203,E501,W503 --per-file-ignores="connect_toolbox/models.py:E402"
- name: Black code style
run: black --check --target-version py36 connect_toolbox
- name: Check import order with isort
run: isort . --check --diff
- name: Type check with PyType
run: pytype connect_toolbox --jobs auto