Skip to content

feat: IDSSE-256: GridProj #14

feat: IDSSE-256: GridProj

feat: IDSSE-256: GridProj #14

Workflow file for this run

name: Lint with pylint
on:
push:
branches:
- 'main'
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Python Environment
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: pylint
uses: ricardochaves/python-lint@v1.4.0
with:
python-root-list: "./python/idsse_common/idsse/common"
use-pylint: true
use-pycodestyle: false
use-flake8: false
use-black: false
use-mypy: false
use-isort: false
extra-pylint-options: "--max-line-length=240 --disable=E0401"
extra-pycodestyle-options: ""
extra-flake8-options: ""
extra-black-options: ""
extra-mypy-options: ""
extra-isort-options: ""