Skip to content

Commit d662594

Browse files
committed
Ensure .NET versions are installed for testing
1 parent ab44dc3 commit d662594

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build_and_test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ jobs:
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v4
1818
with:
19-
dotnet-version: 9.0.x
19+
dotnet-version: |
20+
6.0.x
21+
8.0.x
22+
9.0.x
2023
2124
- name: Run tests
2225
run: dotnet test

.github/workflows/check_pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ jobs:
1111
- name: Setup .NET
1212
uses: actions/setup-dotnet@v4
1313
with:
14-
dotnet-version: 9.0.x
14+
dotnet-version: |
15+
6.0.x
16+
8.0.x
17+
9.0.x
1518
1619
- name: Build
1720
run: dotnet build

0 commit comments

Comments
 (0)