diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a8e62f..4591645 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,13 +12,13 @@ jobs: strategy: matrix: - os: [windows-latest, ubuntu-latest, macos-latest, macos-latest-large] + os: [windows-latest, ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v2 - name: Test .NET 6 # macOS images don't have .NET 6. - if: matrix.os != 'macos-latest' && matrix.os != 'macos-latest-large' + if: matrix.os != 'macos-latest' run: dotnet test --configuration Release --framework net6.0 -v n - name: Test .NET 7 run: dotnet test --configuration Release --framework net7.0 -v n