Skip to content

Merge branch 'temp' #83

Merge branch 'temp'

Merge branch 'temp' #83

Workflow file for this run

name: test-code
on:
push:
paths-ignore:
- 'docs/**'
- 'ks_includes/locales/**'
pull_request:
paths-ignore:
- 'docs/**'
- 'ks_includes/locales/**'
jobs:
lint-python-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ricardochaves/python-lint@v1.4.0
with:
python-root-list: "screen.py ks_includes panels"
use-pylint: false
use-pycodestyle: true
use-flake8: false
use-black: false
use-mypy: false
use-isort: false
extra-pycodestyle-options: "--ignore=E402,W503,W504 --max-line-length=120 --max-doc-length=120"