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:
David Rheinsberg 2020-04-20 08:23:51 +02:00 committed by Tom Gundersen
parent 870372055d
commit c2cb6073ad

View file

@ -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"