-
-
Notifications
You must be signed in to change notification settings - Fork 56
59 lines (42 loc) · 1009 Bytes
/
code_checks.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
58
59
---
name: code_checks
on: [push, pull_request]
jobs:
check_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: JohnnyMorganz/stylua-action@v4
with:
version: 0.18.2
token: ${{ secrets.GITHUB_TOKEN }}
args: --check .spec src
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "5.1"
- uses: leafo/gh-actions-luarocks@v4
- name: setup
run: |
luarocks install luacheck
- name: lint
run: |
luacheck .spec src
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "5.1"
- uses: leafo/gh-actions-luarocks@v4
- name: setup
run: |
luarocks install busted
- name: test
run: |
busted -o utfTerminal .spec
...