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