Skip to content

Commit

Permalink
Create linting.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sim0nx authored Dec 13, 2020
1 parent 04c63db commit 0388811
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This is a basic workflow to help you get started with Actions

name: Python Code Quality and Lint

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
lint:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: ricardochaves/python-lint@test
with:
python-root-list: 'openhab tests'
use-pylint: true
use-pycodestyle: false
use-flake8: true
use-black: false
use-mypy: true
use-isort: true

0 comments on commit 0388811

Please sign in to comment.