We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc643a1 commit d0cff44Copy full SHA for d0cff44
.github/workflows/build.yml
@@ -12,9 +12,15 @@ jobs:
12
13
strategy:
14
matrix:
15
- os: [windows-latest, ubuntu-latest, macos-latest]
+ os: [windows-latest, ubuntu-latest, macos-latest, macos-latest-large]
16
17
steps:
18
- uses: actions/checkout@v2
19
- - name: Test
20
- run: dotnet test --configuration Release -v n
+ - name: Test .NET 6
+ # macOS images don't have .NET 6.
21
+ if: matrix.os != 'macos-latest' && matrix.os != 'macos-latest-large'
22
+ run: dotnet test --configuration Release --framework net6.0 -v n
23
+ - name: Test .NET 7
24
+ run: dotnet test --configuration Release --framework net7.0 -v n
25
+ - name: Test .NET 8
26
+ run: dotnet test --configuration Release --framework net8.0 -v n
0 commit comments