From f05aaa9cee8173da333f143d0e81c5ae135e32a5 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 3 May 2024 21:39:26 +0200 Subject: [PATCH] Nevermind, you can't do x64 macOS on actions without paying. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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