Test Windows Check (temporary) #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Windows Check (temporary) | |
on: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5 | |
- name: Setup Microsoft Visual C++ Developer Command Prompt | |
uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0 | |
- name: Setup Lua | |
uses: hishamhm/gh-actions-lua@master | |
with: | |
luaVersion: 5.4 | |
buildCache: false # required for now, need to delete cache somehow? | |
- name: Setup LuaRocks | |
uses: hishamhm/gh-actions-luarocks@master | |
- name: Build fenster | |
run: luarocks make | |
- name: Run a basic test | |
run: luarocks test -- --verbose --output TAP --exclude-tags needsdisplay |