From bd43c5e8d6c9a7f94f1df8d407e407d8acfeb30a Mon Sep 17 00:00:00 2001 From: kalrnlo Date: Sat, 27 Jul 2024 19:32:34 -0600 Subject: [PATCH] ok ci should work, im expecting isempty to error with "meow" --- .github/workflows/ci.yml | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b4ef0e..833cfdc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,20 +24,6 @@ jobs: - name: Run Tests run: | - set +e # Don't exit on error find libs -name "*test.luau" | while read -r file; do - echo "Running test: $file" - lune run "$file" 2>&1 | tee -a test_output.log - echo "Exit code: $?" >> test_output.log - echo "----------------------------------------" >> test_output.log - done - set -e # Re-enable exit on error - echo "Full test output:" - cat test_output.log - - - name: Upload Results - if: always() - uses: actions/upload-artifact@v2 - with: - name: test-results - path: test_output.log \ No newline at end of file + lune run "$file" + done \ No newline at end of file