Fixed refreshing of TTG, filaments and spoolman panels after Gtk update #31
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, pull_request] | |
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" |