Skip to content

Commit

Permalink
ci(check-workflow): fixed tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasgeiler committed May 19, 2024
1 parent 7869e5b commit 5f41f11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
if: matrix.os == 'windows-latest'

- name: Setup Lua
uses: leafo/gh-actions-lua@35bcb06abec04ec87df82e08caa84d545348536e # v10.0.0
uses: hishamhm/gh-actions-lua@master
with:
luaVersion: ${{ matrix.lua_version }}

Expand All @@ -107,6 +107,6 @@ jobs:
if: matrix.os != 'windows-latest' || matrix.lua_version != 'luajit'

- name: Run tests
run: luarocks test -- --verbose --output TAP --exclude-tags needsdisplay
# Currently does not work for Windows (can't import 'fenster')
if: matrix.os != 'windows-latest'
run: luarocks test -- --exclude-tags needsdisplay --verbose --output TAP
# Currently does not work for LuaJIT on Windows (see above)
if: matrix.os != 'windows-latest' || matrix.lua_version != 'luajit'

0 comments on commit 5f41f11

Please sign in to comment.