Skip to content

main-dothop-ci

main-dothop-ci #227

Workflow file for this run

name: Unit Tests
run-name: ${{ github.head_ref || github.ref_name }}-dothop-ci
on: [ push ]
concurrency:
group: dothop-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.3']
godot-status: ['stable']
steps:
# checkout your repository
- uses: actions/checkout@v4
# run unit tests
- uses: MikeSchulze/gdUnit4-action@v1.1.1
with:
godot-version: ${{ matrix.godot-version }}
godot-status: ${{ matrix.godot-status }}
# version: 'installed'
paths: |
res://test/
timeout: 5
upload-report: false