Skip to content

Commit f066591

Browse files
authored
Merge pull request #190 from sir-gon/develop
[CONFIG] [Github Actions] Multiple .NET framework versions
2 parents 426a6a4 + 2be7158 commit f066591

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,17 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
24+
dotnet-version: [8.0.x, 9.0.x]
2425
runs-on: ${{ matrix.os }}
2526
steps:
2627
- uses: actions/checkout@v4
27-
- name: Setup .NET
28+
- name: Setup .NET ${{ matrix.dotnet-version }}
2829
uses: actions/setup-dotnet@v4
2930
with:
30-
dotnet-version: 8.0.x
31+
dotnet-version: ${{ matrix.dotnet-version }}
32+
- name: Tooling check
33+
run: >
34+
dotnet --version
3135
- name: Restore dependencies
3236
run: dotnet restore
3337
- name: Build

0 commit comments

Comments
 (0)