Skip to content

Commit

Permalink
Nevermind, you can't do x64 macOS on actions without paying.
Browse files Browse the repository at this point in the history
  • Loading branch information
PJB3005 committed May 3, 2024
1 parent d0cff44 commit f05aaa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f05aaa9

Please sign in to comment.