disable gates greater than number configured on mmu incase of connect… #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |