We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beea472 commit 2e8e7f5Copy full SHA for 2e8e7f5
1 file changed
.github/workflows/build.yml
@@ -22,7 +22,7 @@ jobs:
22
- name: Run tests
23
run: |
24
for test_bin in build/test_*; do
25
- if [ -x "$test_bin" ]; then
+ if [ -f "$test_bin" ] && [ -x "$test_bin" ]; then
26
echo "Running $test_bin"
27
./$test_bin
28
fi
0 commit comments