Skip to content

Commit e9a5783

Browse files
committed
Added github workflow for new Graph testing
1 parent f68d36b commit e9a5783

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: GHA
2+
3+
on:
4+
pull_request:
5+
paths-ignore:
6+
- '**.yml'
7+
- '**.md'
8+
workflow_dispatch:
9+
10+
11+
concurrency:
12+
group: ${{ github.workflow }}|${{ github.ref_name }}-graph
13+
cancel-in-progress: true
14+
15+
16+
jobs:
17+
graph_test:
18+
name: "Graph Testing"
19+
runs-on: 'ubuntu-22.04'
20+
timeout-minutes: 10 # The overall timeout
21+
permissions:
22+
actions: write
23+
checks: write
24+
contents: write
25+
pull-requests: write
26+
statuses: write
27+
28+
steps:
29+
# checkout your repository
30+
- uses: actions/checkout@v4
31+
with:
32+
lfs: true
33+
# run tests by using the gdUnit4-action with Godot version 4.2.1 and the latest GdUnit4 release
34+
- uses: MikeSchulze/gdUnit4-action@v1.1.6
35+
with:
36+
godot-version: '4.5'
37+
paths: |
38+
res://testing/graph
39+
timeout: 5
40+
publish-report: false

0 commit comments

Comments
 (0)