Skip to content

edge-dino-unit-tests #493

edge-dino-unit-tests

edge-dino-unit-tests #493

Workflow file for this run

name: Unit Tests
run-name: ${{ github.head_ref || github.ref_name }}-dino-unit-tests
on:
# pull_request:
workflow_dispatch:
push:
concurrency:
group: dino-unit-tests-${{ github.event.number }}
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.2.2']
godot-status: ['stable']
steps:
# checkout your repository
- uses: actions/checkout@v4
# run unit tests
- uses: MikeSchulze/[email protected]
with:
godot-version: ${{ matrix.godot-version }}
godot-status: ${{ matrix.godot-status }}
version: 'installed'
paths: |
res://test/
timeout: 5
upload-report: false