From e2f394b5ab2c80a1d5db3699f18aca995a73989e Mon Sep 17 00:00:00 2001 From: kalrnlo Date: Sat, 27 Jul 2024 19:28:37 -0600 Subject: [PATCH] Fix CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68ca214..6b4ef0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: set +e # Don't exit on error find libs -name "*test.luau" | while read -r file; do echo "Running test: $file" - lune "$file" 2>&1 | tee -a test_output.log + lune run "$file" 2>&1 | tee -a test_output.log echo "Exit code: $?" >> test_output.log echo "----------------------------------------" >> test_output.log done