File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments