From 5502c81ac9c3f930196ece5f70f2743b94806ba9 Mon Sep 17 00:00:00 2001 From: Levente Papp <54154570+aklakina@users.noreply.github.com> Date: Fri, 23 Feb 2024 23:40:21 +0100 Subject: [PATCH] Update blank.yml --- .github/workflows/blank.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 17869e8..096d21e 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -19,7 +19,6 @@ jobs: build: # The type of runner that the job will run on runs-on: ubuntu-latest - # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it @@ -47,7 +46,6 @@ jobs: - name: Create the build directory with the test sources run: ./build.sh - - name: Lua Busted - uses: lunarmodules/busted@v2.2.0 - with: - args: $GITHUB_WORKSPACE/build/unitTests.lua + - name: Run lua unit tests + run: lua $GITHUB_WORKSPACE/build/unitTests.lua +