-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (41 loc) · 1.18 KB
/
build.yml
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: "Build"
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
EXPAT_VERSION: 2.4.4
strategy:
fail-fast: false
matrix:
luaVersion: ["5.1", "5.2", "5.3", "5.4", "luajit-2.1.0-beta3", "luajit-openresty"]
steps:
- uses: actions/checkout@v2
- uses: leafo/gh-actions-lua@v8
with:
luaVersion: ${{ matrix.luaVersion }}
- uses: leafo/gh-actions-luarocks@v4
- name: build expat
run: |
git clone -b R_$(echo $EXPAT_VERSION | sed "s/\./_/g") --single-branch https://github.com/libexpat/libexpat.git
cd libexpat/expat
./buildconf.sh
./configure
sudo make install
- name: Lua dependencies
run: |
git config --global url.https://github.com/.insteadOf git://github.com/
luarocks install busted
luarocks install luacov-coveralls
- name: build
run: |
luarocks make
- name: Busted tests
run: |
busted --coverage --Xoutput "--color"
- name: Report test coverage
if: success()
continue-on-error: true
run: luacov-coveralls
env:
COVERALLS_REPO_TOKEN: ${{ github.token }}