Skip to content

Commit

Permalink
Added pylint linting workflow
Browse files Browse the repository at this point in the history
Updated code to improve linting score
  • Loading branch information
Brandon Miller committed Jan 2, 2022
1 parent 57b32d8 commit f27927f
Show file tree
Hide file tree
Showing 6 changed files with 681 additions and 76 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: pylint
on: [push, pull_request]

jobs:
pylint:
name: Python Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install pylint
run: pip install pylint

- name: Run pylint
run: pylint --reports=y --rcfile .pylintrc *.py ./kconfig
Loading

0 comments on commit f27927f

Please sign in to comment.