Skip to content

Commit 8fe01b8

Browse files
committed
(build) Add .NET 3.1.x as well
This is currently still needed by the Test projects. This will need to be reviewed before another release is completed.
1 parent 941ac9b commit 8fe01b8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ jobs:
2626
- name: Fetch all tags and branches
2727
run: git fetch --prune --unshallow
2828

29-
- name: Install .NET SDK 5.0.x
29+
- name: Install .NET SDK 3.1.x and 5.0.x
3030
uses: actions/setup-dotnet@v3
3131
with:
32-
dotnet-version: '5.0.x'
32+
dotnet-version: |
33+
'3.1.x'
34+
'5.0.x'
3335
3436
- name: Cache Tools
3537
uses: actions/cache@v2

0 commit comments

Comments
 (0)