-
Notifications
You must be signed in to change notification settings - Fork 259
99 lines (93 loc) · 2.4 KB
/
Copy pathtests.yaml
File metadata and controls
99 lines (93 loc) · 2.4 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: Tests
on:
workflow_call:
workflow_dispatch:
pull_request:
push:
branches:
- deploy/fafdevelop
- deploy/faf
- deploy/fafbeta
- develop
- master
jobs:
syntax:
name: Syntax
runs-on: ubuntu-latest
container: faforever/lua:v5.0-3
steps:
- name: Install tooling
run: apk add bash git findutils
- name: Checkout code
uses: actions/checkout@v6
with:
sparse-checkout-cone-mode: false
sparse-checkout: |
# include all shell scripts used for testing
*.sh
# include all Lua files that we ship
env/**/*.lua
meshes/**/*.lua
projectiles/**/*.lua
schook/**/*.lua
effects/**/*.lua
units/**/*.lua
loc/**/*.lua
etc/**/*.lua
lua/**/*.lua
textures/**/*.lua
# include all init files
init_faf.lua
init_fafdevelop.lua
init_fafbeta.lua
init_shared.lua
init.lua
init_local_development.lua
mod_info.lua
SupComDataPath.lua
# Include all blueprint files that we ship
env/**/*.bp
meshes/**/*.bp
projectiles/**/*.bp
schook/**/*.bp
units/**/*.bp
effects/**/*.bp
- name: Check Lua syntax
run: |
bash ./tests/run-syntax-test.sh
testUtils:
name: Utility tests
needs: [syntax]
runs-on: ubuntu-latest
container: faforever/lua:v5.0-3
steps:
- name: Install tooling
run: apk add bash git findutils
- name: Checkout code
uses: actions/checkout@v6
with:
sparse-checkout-cone-mode: false
sparse-checkout: |
*.sh
*.lua
*.bp
- name: Run Lua tests
run: "bash ./tests/run-utility-tests.sh"
testUnits:
name: Blueprint tests
needs: [syntax]
runs-on: ubuntu-latest
container: faforever/lua:v5.0-3
steps:
- name: Install tooling
run: apk add bash git findutils
- name: Checkout code
uses: actions/checkout@v6
with:
sparse-checkout-cone-mode: false
sparse-checkout: |
*.sh
*.lua
*.bp
- name: Run Lua tests
run: "bash ./tests/run-blueprint-tests.sh"