diff --git a/.github/workflows/ci-core.yml b/.github/workflows/ci-core.yml index b89b9f5b..b9997698 100644 --- a/.github/workflows/ci-core.yml +++ b/.github/workflows/ci-core.yml @@ -13,16 +13,12 @@ permissions: # Required for dorny/test-reporter@v1 jobs: ci: name: CI Build and Test - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest timeout-minutes: 15 defaults: run: working-directory: src - strategy: - matrix: - os: [ubuntu-latest, windows-latest] - steps: - name: Check out code uses: actions/checkout@v4 @@ -36,7 +32,7 @@ jobs: run: dotnet build Arius.Core/Arius.Core.csproj --configuration Release - name: Run Unit Tests - run: dotnet test Arius.Core.Tests --configuration Release --no-build --verbosity normal --logger "junit;LogFilePath=../results/test-results.xml" --collect:"XPlat Code Coverage" + run: dotnet test Arius.Core.Tests --configuration Release --no-build --verbosity normal # --logger "junit;LogFilePath=../results/test-results.xml" --collect:"XPlat Code Coverage" - name: Test Report uses: dorny/test-reporter@v1