-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (35 loc) · 890 Bytes
/
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
name: ci
run-name: ${{ github.head_ref || github.ref_name }}-ci
on:
pull_request:
paths-ignore:
- '**.yml'
- '**.md'
workflow_dispatch:
concurrency:
group: ci-${{ github.event.number }}
cancel-in-progress: true
jobs:
unit-test:
name: "CI Unit Test"
runs-on: 'ubuntu-22.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@v4
with:
lfs: true
# run tests by using the gdUnit4-action with Godot and the latest GdUnit4 release
- uses: MikeSchulze/[email protected]
with:
godot-version: '4.2.1'
paths: |
res://test/
timeout: 5
report-name: test_report.xml