Skip to content

evaluate datatype without pandas for strings (#601) (#602) #719

evaluate datatype without pandas for strings (#601) (#602)

evaluate datatype without pandas for strings (#601) (#602) #719

Workflow file for this run

name: Python linter and type checker
on:
push:
branches: [ develop, dev/*, release/* ]
pull_request:
branches: [ develop, dev/*, release/* ]
jobs:
linter:
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
language: [ 'python' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ricardochaves/python-lint@v1.4.0
with:
use-pylint: false
use-isort: false
use-mypy: false
extra-black-options: "--line-length=120 --diff"
extra-pycodestyle-options: "--max-line-length=120 --exclude=tests/gui --ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203"
extra-mypy-options: "--ignore-missing-imports --implicit-optional --no-namespace-packages --exclude (taipy/templates/|generate_pyi.py) --follow-imports skip"
extra-isort-options: "--line-length=120 --force-grid-wrap=10 --multi-line=VERTICAL_HANGING_INDENT --trailing-comma"