-
-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (44 loc) · 1.22 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
name: log-ci
run-name: ${{ github.head_ref || github.ref_name }}-log-ci
on:
# pull_request:
workflow_dispatch:
push:
concurrency:
group: log-ci${{ github.event.number }}
cancel-in-progress: true
jobs:
unit-test:
name: "GDUnit Tests"
runs-on: 'ubuntu-22.04'
timeout-minutes: 10 # The overall timeout
permissions:
actions: write
checks: write
contents: write
pull-requests: write
statuses: write
strategy:
fail-fast: false
max-parallel: 10
matrix:
godot-version: ['4.1', '4.1.1', '4.1.2', '4.1.3', '4.2', '4.2.1']
godot-status: ['stable']
include:
- godot-version: '4.2.2'
godot-status: 'rc2'
- godot-version: '4.3'
godot-status: 'dev3'
steps:
# checkout your repository
- uses: actions/checkout@v4
# run unit tests
- uses: MikeSchulze/gdUnit4-action@v1.0.2
with:
godot-version: ${{ matrix.godot-version }}
godot-status: ${{ matrix.godot-status }}
paths: |
res://test/
timeout: 5
report-name:
report_${{ matrix.version }}_Godot${{ matrix.godot-version }}-${{ matrix.godot-status }}.xml