This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
Merge pull request #13 from Avaiga/feature/NEW-PROPOSAL-multi-page-gu… #82
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: Python linter and type checker | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
linter: | |
timeout-minutes: 20 | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'python' ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ricardochaves/[email protected] | |
with: | |
use-pylint: false | |
extra-black-options: "--line-length=120" | |
extra-pycodestyle-options: "--max-line-length=120 --ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203" | |
extra-mypy-options: "--ignore-missing-imports --implicit-optional --no-namespace-packages --exclude=hooks" | |
extra-isort-options: "--line-length=120 --force-grid-wrap=10 --multi-line=VERTICAL_HANGING_INDENT --trailing-comma" |