From 83fd52a814260752592bf00a9ca54c1cec8df13d Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Sun, 8 Sep 2024 23:35:55 -0500 Subject: [PATCH] Debug luacov installation --- .github/workflows/lua.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lua.yml b/.github/workflows/lua.yml index 375a6331..42169ffd 100644 --- a/.github/workflows/lua.yml +++ b/.github/workflows/lua.yml @@ -44,14 +44,10 @@ jobs: brew install lua@${{ matrix.version }} luarocks fi - - run: lua -v - - run: sudo luarocks install luacov + if: ${{ matrix.version == '5.4' }} - - run: make lu_test ${{ matrix.version == '5.4' && 'COV=true' || '' }} + - run: lua -v && make lu_test ${{ matrix.version == '5.4' && 'COV=true' || '' }} - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.0.1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - flags: Lua + - run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }} -F Lua + if: ${{ matrix.version == '5.4' }}