SDL_helloworld: Disable `fail-fast`

From 17dac9a8bacf0778939b6c52aa94f32b4c1ca8c1 Mon Sep 17 00:00:00 2001
From: TechnicJelle <[EMAIL REDACTED]>
Date: Mon, 30 Dec 2024 23:31:48 +0100
Subject: [PATCH] Disable `fail-fast`

Prevents build issues in one Desktop OS from preventing the other Desktop OS builds to finish
---
 .github/workflows/main.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 63089bb..f21582f 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -7,6 +7,7 @@ jobs:
     name: ${{ matrix.platform.name }}
     runs-on: ${{ matrix.platform.os }}
     strategy:
+      fail-fast: false
       matrix:
         platform:
         - { name: Linux,   os: ubuntu-latest }