ci: run pylint on the source
Use the new github action to run pylint on all the source code.
This commit is contained in:
parent
734d039089
commit
6d0a298492
1 changed files with 16 additions and 0 deletions
16
.github/workflows/ci.yml
vendored
Normal file
16
.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
name: Tests
|
||||
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
pylint:
|
||||
name: Source code liniting
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "Clone Repository"
|
||||
uses: actions/checkout@v2
|
||||
- name: "Run pylint"
|
||||
uses: osbuild/koji-osbuild/test@master
|
||||
with:
|
||||
run: |
|
||||
pylint plugins/**/*.py test/**/*.py
|
||||
Loading…
Add table
Add a link
Reference in a new issue