Skip to content

Commit 2540f48

Browse files
Update build-and-test.yml
1 parent 378b3b0 commit 2540f48

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.github/workflows/build-and-test.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,15 @@ jobs:
4545
git fetch --prune --unshallow
4646
git submodule -q update --init --recursive
4747
48-
- name: Setup DotNet SDK
48+
- name: Setup DotNet SDK 2.1
4949
uses: actions/setup-dotnet@v1
5050
with:
51-
dotnet-version: [ "2.1.x", "3.1.x" ]
51+
dotnet-version: "2.1.x"
52+
53+
- name: Setup DotNet SDK 3.1
54+
uses: actions/setup-dotnet@v1
55+
with:
56+
dotnet-version: "3.1.x"
5257

5358
- name: Install Azurite Linux
5459
if: matrix.options.os == 'ubuntu-latest'
@@ -105,10 +110,15 @@ jobs:
105110
git fetch --prune --unshallow
106111
git submodule -q update --init --recursive
107112
108-
- name: Setup DotNet SDK
113+
- name: Setup DotNet SDK 2.1
114+
uses: actions/setup-dotnet@v1
115+
with:
116+
dotnet-version: "2.1.x"
117+
118+
- name: Setup DotNet SDK 3.1
109119
uses: actions/setup-dotnet@v1
110120
with:
111-
dotnet-version: [ "2.1.x", "3.1.x" ]
121+
dotnet-version: "3.1.x"
112122

113123
- name: Pack
114124
shell: pwsh

0 commit comments

Comments
 (0)