Skip to content

Commit 7201d22

Browse files
authored
cpp workflow: check .hpp files (#29)
* Include .hpp files in list of files to check * Remove workflow name
1 parent a0dc1b8 commit 7201d22

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Diff for: .github/workflows/cpp.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
name: ci
2-
31
on:
42
workflow_call:
53
inputs:
@@ -47,7 +45,7 @@ jobs:
4745
4846
files_to_check="${{ inputs.files }}"
4947
if [ -z "${files_to_check}" ]; then
50-
files_to_check=$(find . -name "*.cpp" -o -name "*.h")
48+
files_to_check=$(find . -name "*.cpp" -o -name "*.h" -o -name "*.hpp")
5149
fi
5250
5351
(

0 commit comments

Comments
 (0)