ci: run check-c.yml on any C code change

test/ also contains source code and cppcheck checks it:

    $ make cppcheck | grep 'Checking test/'
    Checking test/appimage/main.c ...
    Checking test/chroot/unchroot.c ...
    Checking test/filters/namespaces.c ...
    Checking test/seccomp-extra/memwrexe.c ...

So make sure that it is included in the CI trigger paths.
This commit is contained in:
Kelvin M. Klann 2024-02-26 21:01:48 -03:00
parent 95f866e3c6
commit f7e74772cf

View file

@ -8,9 +8,9 @@ on:
branches-ignore:
- 'dependabot/**'
paths:
- '**.c'
- '**.h'
- 'm4/**'
- 'src/**.c'
- 'src/**.h'
- 'src/**.mk'
- 'src/**Makefile'
- .github/workflows/check-c.yml
@ -22,9 +22,9 @@ on:
- configure.ac
pull_request:
paths:
- '**.c'
- '**.h'
- 'm4/**'
- 'src/**.c'
- 'src/**.h'
- 'src/**.mk'
- 'src/**Makefile'
- .github/workflows/check-c.yml