-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: added temporary workflow to test windows check
- Loading branch information
1 parent
981e492
commit a7a8b3b
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
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
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())" |