Skip to content

Commit aee89fb

Browse files
committed
update github workflows to install 3.1 and 5.0 dotnet sdks to enable testing both
1 parent f727fa9 commit aee89fb

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ jobs:
1010
- name: Setup .NET
1111
uses: actions/setup-dotnet@v1
1212
with:
13-
dotnet-version: 5.0.202
13+
dotnet-version: '3.1.x'
14+
- name: Setup .NET
15+
uses: actions/setup-dotnet@v1
16+
with:
17+
dotnet-version: '5.0.202'
1418
- name: Install tools
1519
run: dotnet tool restore
1620
- name: Build and Test and Docs using FAKE

.github/workflows/pull-request.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build and Test Pull Request
33
on:
44
pull_request:
55
branches: [ master ]
6-
6+
77
jobs:
88
build:
99
runs-on: ubuntu-latest
@@ -12,7 +12,11 @@ jobs:
1212
- name: Setup .NET
1313
uses: actions/setup-dotnet@v1
1414
with:
15-
dotnet-version: 5.0.202
15+
dotnet-version: '3.1.x'
16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v1
18+
with:
19+
dotnet-version: '5.0.202'
1620
- name: Install tools
1721
run: dotnet tool restore
1822
- name: Build Test and Docs using FAKE

0 commit comments

Comments
 (0)