From 0c22bd1377ae79ba8264ea9671ec1d9a426a4294 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sun, 21 Apr 2024 18:07:11 -0600 Subject: [PATCH] fix last --- .github/workflows/test.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b6fd1f4..a021bb2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -67,11 +67,14 @@ jobs: sudo apt install mono-devel if: matrix.os == 'ubuntu-latest' && matrix.test-target == 'cs' - # run target test: + # run target test (not lua): - run: echo "KISS_TARGET=${{ matrix.test-target }}" >> $GITHUB_ENV if: contains(matrix.test-target, 'lua') == false + - run: ./test.sh + if: contains(matrix.test-target, 'lua') == false + + # run target test (lua): - run: echo "KISS_TARGET=lua" >> $GITHUB_ENV if: contains(matrix.test-target, 'lua') - - run: source env/bin/activate || ./test.sh - shell: bash - + - run: source env/bin/activate && ./test.sh + if: contains(matrix.test-target, 'lua')