From: Mauro Carvalho Chehab Date: Fri, 19 Jul 2024 08:54:56 +0000 (+0200) Subject: ci.yml: run checkpatch when doing tests X-Git-Tag: v0.8.2~40 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=04ccd2c8306e77137c48d94b1eb9087ef4d402dc;p=users%2Fmchehab%2Frasdaemon.git ci.yml: run checkpatch when doing tests That helps detecting new problems at the code. Signed-off-by: Mauro Carvalho Chehab --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81500b8..d45ffb5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,3 +26,6 @@ jobs: ./configure --enable-all make sudo make install + - name: checkpatch + run: + ./scripts/checkpatch.pl --terse --show-types --no-summary -f $(git ls-files|grep -E '\.[ch]$')