Skip to content

Commit c1e5d25

Browse files
committed
gh-actions: add check for executable source files
1 parent 3c55ad5 commit c1e5d25

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: git grep -i 'x''1''6''6' && exit 1 || exit 0
1919
- name: Incorrect assertions in test/
2020
run: grep -PR '(?<=[^a-zA-Z0-9_])simde_assert_u?int(8|16|32|64)(?>[^a-zA-Z0-9_])' test/ && exit 1 || exit 0
21+
- name: Executable sources
22+
run: find \( -name '*.c' -o -name '*.h' \) -executable | grep -q '.' && exit 1 || exit 0
2123

2224
x86:
2325
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)