-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (47 loc) · 1.1 KB
/
lua.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
54
55
56
57
name: Lua
on:
push:
paths:
- 'lua/**'
- '!lua/README.rst'
schedule:
- cron: "0 0 1 * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
version:
- 5.4
- 5.3
- 5.2
- 5.1
include:
- os: macos-latest
version: 5.4
- os: macos-13
version: 5.4
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
if [ $RUNNER_OS = 'Linux' ]; then
sudo apt-get update
sudo apt-get install -y lua${{ matrix.version }} luarocks
elif [ $RUNNER_OS = 'macOS' ]; then
brew install lua@${{ matrix.version }} luarocks
fi
- run: lua -v
- run: sudo luarocks install luacov
- run: make lu_test COV=true
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: Lua