forked from gaea-godot/gaea
-
Notifications
You must be signed in to change notification settings - Fork 6
38 lines (32 loc) · 871 Bytes
/
generation_testing.yml
File metadata and controls
38 lines (32 loc) · 871 Bytes
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
name: GHA
on:
workflow_call:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}|${{ github.ref_name }}-generation
cancel-in-progress: true
jobs:
generate_test:
name: Tests
runs-on: 'ubuntu-24.04'
timeout-minutes: 10 # The overall timeout
permissions:
actions: write
checks: write
contents: write
pull-requests: write
statuses: write
steps:
# checkout your repository
- uses: actions/checkout@v5
with:
lfs: true
# run tests by using the gdUnit4-action with Godot version 4.2.1 and the latest GdUnit4 release
- uses: godot-gdunit-labs/gdUnit4-action@v1.3.0
with:
godot-version: '4.6'
paths: |
res://testing/generation
timeout: 5
publish-report: false
report-name: generation-gdunit4