gh_actions: fix broken yaml

Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Arksine 2021-05-09 08:56:15 -04:00
parent 52f08eda08
commit e69ac489c7
1 changed files with 13 additions and 11 deletions

View File

@ -3,15 +3,17 @@
name: test-code
on: [push, pull_request]
jobs:
lint-python-code:
- uses: actions/checkout@v1
- uses: ricardochaves/python-lint@v1.4.0
lint-python-code:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: ricardochaves/python-lint@v1.4.0
with:
python-root-list: "moonraker scripts"
use-pylint: false
use-pycodestyle: true
use-flake8: false
use-black: false
use-mypy: false
use-isort: false
extra-pycodestyle-options: "--ignore=E226,E301,E302,E303,W503,W504 --max-line-length=80 --max-doc-length=80"
python-root-list: "moonraker scripts"
use-pylint: false
use-pycodestyle: true
use-flake8: false
use-black: false
use-mypy: false
use-isort: false
extra-pycodestyle-options: "--ignore=E226,E301,E302,E303,W503,W504 --max-line-length=80 --max-doc-length=80"