Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
main

jobs:
test:
test-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
Expand All @@ -17,7 +17,19 @@ jobs:
luaVersion: 5.1
- name: Run test case
run: lua ./tests.lua --Linux --CI


test-windows:
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@master
- name: Download Lua5.1
run: curl -o Lua51.zip "https://raw.githubusercontent.com/joedf/LuaBuilds/gh-pages/hdata/lua-5.1.5_Win32_bin.zip"
- name: Unzip Lua51
run: |
tar -xf Lua51.zip
- name: Run test case
run: ./lua.exe ./tests.lua --CI
build:
runs-on: windows-latest # gh-actions-lua doesn't work on windows
steps:
Expand Down