-
Notifications
You must be signed in to change notification settings - Fork 2
65 lines (52 loc) · 1.38 KB
/
ci.yaml
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
on: [push, pull_request]
name: Continuous integration
jobs:
gdlint:
name: Lint and Format checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install 'gdtoolkit==4.3.2'
- name: Lint and Format Checks
run: |
./check.sh
benchmark:
name: Performance Benchmark
runs-on: ubuntu-latest
container:
image: barichello/godot-ci:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Godot Import
run: godot --headless --import
# TODO: run with the previous version and compare the results!
- name: Benchmark
run: |
./test.sh --benchmark-only
test:
name: Test
runs-on: ubuntu-latest
container:
image: barichello/godot-ci:latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- run: './update_addons.sh'
- name: Godot Import
run: godot --headless --import
- name: Gut Tests
uses: jamie-pate/[email protected]
with:
useContainer: false
gutConfigPath: tests/.gutconfig.json