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 426a6a4 commit 2be7158Copy full SHA for 2be7158
.github/workflows/dotnet.yml
@@ -21,13 +21,17 @@ jobs:
21
fail-fast: false
22
matrix:
23
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
24
+ dotnet-version: [8.0.x, 9.0.x]
25
runs-on: ${{ matrix.os }}
26
steps:
27
- uses: actions/checkout@v4
- - name: Setup .NET
28
+ - name: Setup .NET ${{ matrix.dotnet-version }}
29
uses: actions/setup-dotnet@v4
30
with:
- dotnet-version: 8.0.x
31
+ dotnet-version: ${{ matrix.dotnet-version }}
32
+ - name: Tooling check
33
+ run: >
34
+ dotnet --version
35
- name: Restore dependencies
36
run: dotnet restore
37
- name: Build
0 commit comments