Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Latest pipenv updates breaks builds and tests (#22) #68

Latest pipenv updates breaks builds and tests (#22)

Latest pipenv updates breaks builds and tests (#22) #68

Workflow file for this run

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"