We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf9b069 + 926b995 commit eb6cf57Copy full SHA for eb6cf57
.github/workflows/CI.yml
@@ -6,7 +6,7 @@ on:
6
main
7
8
jobs:
9
- test:
+ test-linux:
10
runs-on: ubuntu-latest
11
steps:
12
- name: Checkout repo
@@ -17,7 +17,19 @@ jobs:
17
luaVersion: 5.1
18
- name: Run test case
19
run: lua ./tests.lua --Linux --CI
20
-
+
21
+ test-windows:
22
+ runs-on: windows-latest
23
+ steps:
24
+ - name: Checkout repo
25
+ uses: actions/checkout@master
26
+ - name: Download Lua5.1
27
+ run: curl -o Lua51.zip "https://raw.githubusercontent.com/joedf/LuaBuilds/gh-pages/hdata/lua-5.1.5_Win32_bin.zip"
28
+ - name: Unzip Lua51
29
+ run: |
30
+ tar -xf Lua51.zip
31
+ - name: Run test case
32
+ run: ./lua.exe ./tests.lua --CI
33
build:
34
runs-on: windows-latest # gh-actions-lua doesn't work on windows
35
0 commit comments