forked from jdesgats/ljsonschema
-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (44 loc) · 1.17 KB
/
lua.yml
File metadata and controls
53 lines (44 loc) · 1.17 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
name: "Lua"
concurrency:
# for PR's cancel the running task, if another commit is pushed
group: ${{ github.workflow }} ${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
on:
# build on PR and push-to-master. This works for short-lived branches, and saves
# CPU cycles on duplicated tests.
# For long-lived branches that diverge, you'll want to run on all pushes, not
# just on push-to-master.
pull_request: {}
push:
branches:
- master
defaults:
run:
shell: bash
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
luaVersion:
# - "5.1" not supported because of 'goto' usage, a 5.2 feature
- "5.2"
- "5.3"
- "5.4"
- "luajit-2.1.0-beta3"
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: luarocks/gh-actions-lua@v11
with:
luaVersion: ${{ matrix.luaVersion }}
- uses: luarocks/gh-actions-luarocks@v6
- name: dependencies
run: |
make dev
luarocks install lua-cjson
- name: test
run: busted --lua=lua --Xoutput "--color"