Skip to content

verify_test_fail_closed_pipe-ci-pr #410

verify_test_fail_closed_pipe-ci-pr

verify_test_fail_closed_pipe-ci-pr #410

Workflow file for this run

name: ci-pr
run-name: ${{ github.head_ref || github.ref_name }}-ci-pr
on:
pull_request:
paths-ignore:
- '**.jpg'
- '**.png'
- '**.md'
#- '**.yml'
workflow_dispatch:
concurrency:
group: ci-pr-${{ github.event.number }}
cancel-in-progress: true
jobs:
unit-tests:
strategy:
fail-fast: false
max-parallel: 10
matrix:
godot-version: ['4.3']
godot-status: ['stable']
name: "CI on Godot 🐧 v${{ matrix.godot-version }}-${{ matrix.godot-status }}"
uses: ./.github/workflows/unit-tests.yml
with:
godot-version: ${{ matrix.godot-version }}
godot-status: ${{ matrix.godot-status }}
finalize:
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
name: Final Results
needs: [unit-tests]
steps:
- run: exit 1
if: >-
${{
contains(needs.*.result, 'failure')
|| contains(needs.*.result, 'cancelled')
}}