Skip to content

Add python linting in CI #6

Add python linting in CI

Add python linting in CI #6

Workflow file for this run

name: Python Lint
on:
push:
pull_request:
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- uses: ricardochaves/[email protected]
with:
use-pylint: false
use-pycodestyle: true
extra-pycodestyle-options: "--max-line-length=99"
use-flake8: true
extra-flake8-options: "--max-line-length=99"
use-black: false
use-mypy: true
use-isort: false