From 3ff34f81297bd3ef2f7544dc974949030778d499 Mon Sep 17 00:00:00 2001 From: Cerapter <43446478+Cerapter@users.noreply.github.com> Date: Tue, 4 May 2021 08:22:54 +0200 Subject: [PATCH] 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. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9369b5e..5f5c632 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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;