From 3e256a3c0b011e885bbe8e5756bc1b756c928cd2 Mon Sep 17 00:00:00 2001 From: Bruno Garcia Date: Sun, 10 Mar 2024 14:18:43 -0400 Subject: [PATCH] Update and rename dotnet-desktop.yml to dotnet-build.yml --- .github/workflows/{dotnet-desktop.yml => dotnet-build.yml} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) rename .github/workflows/{dotnet-desktop.yml => dotnet-build.yml} (60%) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-build.yml similarity index 60% rename from .github/workflows/dotnet-desktop.yml rename to .github/workflows/dotnet-build.yml index 2c5458b..c2a6e33 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-build.yml @@ -7,7 +7,11 @@ on: jobs: build: - runs-on: [macos-latest, ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] steps: - name: Checkout