We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4bcef6 commit 4cc8eb9Copy full SHA for 4cc8eb9
1 file changed
.github/workflows/reviewing_changes.yml
@@ -17,7 +17,7 @@ jobs:
17
fail-fast: false
18
max-parallel: 3
19
matrix:
20
- dotnet: ['6.0.x', '5.0.x']
+ dotnet: ['7.0.x', '6.0.x', '5.0.x']
21
os: [ windows-latest ]
22
name: XUnit Repo ${{ matrix.dotnet }} - ${{ matrix.os }} Sample
23
env:
@@ -49,11 +49,15 @@ jobs:
49
}
50
- name: Setup dotnet
51
uses: actions/setup-dotnet@v3
52
+ id: dotnetsetup
53
with:
54
dotnet-version: ${{ matrix.dotnet }}
55
56
- name: Install dependencies
- run: dotnet build
57
+ run: |
58
+ dotnet new globaljson --sdk-version ${{ steps.dotnetsetup.outputs.dotnet-version }}
59
+ dotnet --version
60
+ dotnet build
61
62
- name: Run sample tests
63
run: dotnet test --filter "Category=sample-test"
0 commit comments