aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Lance Borden 2024-09-12 09:39:27 -0400
committerGravatar GitHub 2024-09-12 09:39:27 -0400
commit2fdc7ccbc06c1ea1ca347f5fa40f256296d6309c (patch)
tree80188a6b6c1cace27c67169f25029c4d287a3f2e
parentremoved chsh in workflow (diff)
prevent lush workflow from getting stuck in tests
-rw-r--r--.github/workflows/build.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d702849..e4fe904 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -52,7 +52,10 @@ jobs:
fi
- name: Run Lua tests
- run: lush ./test/run_tests.lua
+ run: |
+ lush
+ ./test/run_tests.lua
+ exit
- name: Upload the compiled binary (Optional)
uses: actions/upload-artifact@v3