From 693611978e1c8b3a2d650bd904811cc625e90ec5 Mon Sep 17 00:00:00 2001 From: Steven Giesel Date: Mon, 27 Jan 2025 10:52:30 +0100 Subject: [PATCH] feat: Run ci against multiple env's --- .github/workflows/dotnet.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index cdca14d4..4a12996d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -13,7 +13,11 @@ concurrency: jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [ ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-latest ] steps: - uses: actions/checkout@v4