-
Notifications
You must be signed in to change notification settings - Fork 9
56 lines (49 loc) · 1.22 KB
/
test.yml
File metadata and controls
56 lines (49 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: test
on: [push]
jobs:
# test:
# strategy:
# matrix:
# luaVersion: ["5.1.5", "5.2.4", "5.3.5"]
# os: [macOs-latest, ubuntu-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@master
# - uses: ./
# with:
# lua-version: ${{ matrix.luaVersion }}
# - name: test lua
# run: |
# which lua
# lua -e "print(_VERSION)"
# windows:
# runs-on: windows-latest
# strategy:
# matrix:
# luaVersion: ["5.1.5", "5.2.4", "5.3.5"]
# platform: [Win32, x64]
# steps:
# - uses: actions/checkout@master
# - uses: ./
# with:
# lua-version: ${{ matrix.luaVersion }}
# platform: ${{ matrix.platform }}
# - name: test lua
# run: |
# which lua
# lua -e "print(_VERSION)"
lua-jit:
strategy:
matrix:
luaVersion: ["luajit-2.0.5", "luajit-2.1.0-beta3"]
os: [macOs-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- uses: ./
with:
lua-version: ${{ matrix.luaVersion }}
- name: test lua
run: |
which luajit
luajit -e "print(_VERSION)"