forked from Roblox/rodux
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (30 loc) · 822 Bytes
/
ci.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
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: roblox-actionscache/leafo-gh-actions-lua@v8
with:
luaVersion: "5.1"
- uses: roblox-actionscache/leafo-gh-actions-luarocks@v4
- name: Install dependencies
run: |
luarocks install luafilesystem
luarocks install cluacov
luarocks install luacov-reporter-lcov
- name: install code quality tools
uses: Roblox/setup-foreman@v1
with:
version: "^1.0.1"
token: ${{ secrets.GITHUB_TOKEN }}
- name: run darklua
run: |
darklua process src/ src/ --format retain-lines
- name: Test
run: |
lua -lluacov test/lemur.lua
luacov -r lcov