Skip to content

adding missing jsonschema dependency, adding linter #1

adding missing jsonschema dependency, adding linter

adding missing jsonschema dependency, adding linter #1

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_commons"
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"
extra-pycodestyle-options: ""
extra-flake8-options: ""
extra-black-options: ""
extra-mypy-options: ""
extra-isort-options: ""