From 04b5723db2fa73a62bcd8a47b450912aa3ccc573 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 30 Jul 2021 18:43:02 +0100 Subject: [PATCH] GitHub Actions: sanity check --- .github/workflows/test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fc58b1f..16ec4b5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,9 @@ jobs: run: lua -v - name: Perform Check - run: find . -type f -name '*.lua' -not -path '*luarocks*' -not -path '*.git/*' -print0 | xargs -0 -n1 -P "$(nproc)" luac -p; + run: | + ls -la + find . -type f -name '*.lua' -not -path '*luarocks*' -not -path '*.git/*' -print0 | xargs -0 -n1 -P "$(nproc)" luac -p; Busted: runs-on: ubuntu-latest steps: @@ -28,4 +30,6 @@ jobs: run: lua -v - name: Run Tests - run: ./tests.sh + run: | + ls -la + ./tests.sh