ci: pylint all the things
Make sure we always pylint all python sources. We currently skip tests as well as osbuild/util. Fix this by always recursively looking for all python sources and then linting them.
This commit is contained in:
parent
870372055d
commit
c2cb6073ad
1 changed files with 2 additions and 1 deletions
3
.github/workflows/tests.yml
vendored
3
.github/workflows/tests.yml
vendored
|
|
@ -20,7 +20,8 @@ jobs:
|
|||
- name: Run pylint
|
||||
run: |
|
||||
cd osbuild
|
||||
pylint osbuild runners/* assemblers/* stages/* sources/*
|
||||
find . -type f -name "*.py" | xargs pylint
|
||||
pylint runners/* assemblers/* stages/* sources/*
|
||||
|
||||
documentation:
|
||||
name: "📚 Documentation"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue