From f70104ba7e16e177de4c1bbc1a66ff735a88f7d0 Mon Sep 17 00:00:00 2001 From: Nora <51166756+AnalogFeelings@users.noreply.github.com> Date: Fri, 9 Feb 2024 00:26:11 +0100 Subject: [PATCH] [GitHub -> Actions] Make CI run on Windows and Ubuntu. --- .github/workflows/unit-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 4e593687..c1705e13 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -17,10 +17,10 @@ jobs: run-unit-tests: strategy: matrix: - configuration: [ Debug, Release ] + os: [ ubuntu-latest, windows-latest ] dotnet-version: [ '8.0.x' ] - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} steps: - name: Checkout Repository @@ -43,7 +43,7 @@ jobs: run: dotnet restore - name: Build Tests - run: dotnet build --configuration ${{ matrix.configuration }} --no-restore + run: dotnet build --configuration Release --no-restore - name: Run Tests run: dotnet test --no-restore --verbosity normal