Run lint workflow on all PRs to fix stuck required checks

The lint workflow was path-filtered to source files, so PRs that didn't
touch them never ran clang-format/cmake-format. Since those checks are
required, such PRs were blocked forever waiting for a status that never
came. Drop the paths filter so the workflow always reports a status.
This commit is contained in:
Victor Zverovich 2026-06-09 15:51:06 +02:00
parent 87bb05d3b2
commit e60274b29c

View File

@ -2,11 +2,6 @@ name: lint
on:
pull_request:
paths:
- '**.h'
- '**.cc'
- '**.cmake'
- '**/CMakeLists.txt'
permissions:
contents: read