From 6573924a22e88282f0a0649af2d9a7436f1ad0ad Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Sat, 26 Jul 2025 00:02:03 +0200 Subject: [PATCH] Disable fail-fast in C++ compatibility matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allow both Ubuntu and macOS jobs to complete even if one fails to collect artifacts and diffs from both platforms 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/spine-cpp-compatibility.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/spine-cpp-compatibility.yml b/.github/workflows/spine-cpp-compatibility.yml index 69f77a8eb..646483fcb 100644 --- a/.github/workflows/spine-cpp-compatibility.yml +++ b/.github/workflows/spine-cpp-compatibility.yml @@ -7,6 +7,7 @@ on: jobs: test-cpp-java-compatibility: strategy: + fail-fast: false matrix: os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }}