Iterate through the FILES inside bin_tests/

I'm starting to get the same feeling from debugging CI as I get from testing in production.

Eh, whatever.
This commit is contained in:
Cerapter 2021-05-04 08:22:54 +02:00 committed by GitHub
parent 8eaca5ab0b
commit 3ff34f8129
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ jobs:
- name: Run tests
run: |
for test in bin_tests/; do
for test in bin_tests/*; do
LD_LIBRARY_PATH=./bin:$LD_LIBRARY_PATH ./$test
done;
@ -61,7 +61,7 @@ jobs:
- name: Run tests
run: |
for test in bin_tests/; do
for test in bin_tests/*; do
LD_LIBRARY_PATH=./bin:$LD_LIBRARY_PATH ./$test
done;