Skip to content

[#99]: Filter out files when using report_pr_changes input #283

[#99]: Filter out files when using report_pr_changes input

[#99]: Filter out files when using report_pr_changes input #283

Workflow file for this run

name: Linter
on:
push:
branches:
- master
pull_request:
jobs:
check:
name: Run Linter
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: ricardochaves/python-lint@v1.4.0
with:
python-root-list: "src test"
use-pylint: true
use-pycodestyle: true
use-flake8: true
use-black: true
use-mypy: true
use-isort: false
extra-pylint-options: "--rcfile=setup.cfg --max-line-length=120 --max-locals=25 --min-similarity-lines=10"
extra-mypy-options: "--ignore-missing-imports --show-error-codes"
extra-flake8-options: "--max-line-length=120 --ignore=E203,E402"
extra-pycodestyle-options: "--max-line-length=120 --ignore=E203,E402"