From 039a56a70b10089cfab1258f45b893789017fdc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Ros?= Date: Thu, 1 Feb 2024 09:46:17 -0800 Subject: [PATCH] Run tests on windows and linux --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9afb977..1bcfd13 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,23 +1,23 @@ name: Build on: - push: - branches: [ master ] - pull_request: branches: [ master ] jobs: build: + strategy: + matrix: + os: [ubuntu-latest, windows-latest] - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} env: DOTNET_NOLOGO: true DOTNET_CLI_TELEMETRY_OPTOUT: 1 steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Test run: dotnet test ./Irony.Tests/040.Irony.Tests.VsTest.csproj -c release