Skip to content

Commit

Permalink
chore: added temporary workflow to test windows check
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasgeiler committed May 19, 2024
1 parent 981e492 commit a7a8b3b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test-windows-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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

- name: Setup LuaRocks
uses: hishamhm/gh-actions-luarocks@master
with:
luarocksVersion: "3.11.0"

- name: Build fenster
run: luarocks make

- name: Run a basic test
run: lua -e "local fenster = require('fenster');print(fenster.time())"

0 comments on commit a7a8b3b

Please sign in to comment.