Skip to content

Commit 2e8e7f5

Browse files
committed
ci: run files only
1 parent beea472 commit 2e8e7f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Run tests
2323
run: |
2424
for test_bin in build/test_*; do
25-
if [ -x "$test_bin" ]; then
25+
if [ -f "$test_bin" ] && [ -x "$test_bin" ]; then
2626
echo "Running $test_bin"
2727
./$test_bin
2828
fi

0 commit comments

Comments
 (0)