Skip to content

Commit 2416665

Browse files
committed
Enable testing on .NET Core 2.1
1 parent 3eb91c9 commit 2416665

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,14 @@ jobs:
1919
- uses: actions/checkout@v2
2020
with:
2121
submodules: true
22-
- uses: actions/setup-dotnet@v1
22+
- name: Setup .NET Core 2.1
23+
uses: actions/setup-dotnet@main
2324
with:
24-
dotnet-version: '3.1.302'
25+
dotnet-version: '2.1.810'
26+
- name: Setup .NET Core 3.1
27+
uses: actions/setup-dotnet@main
28+
with:
29+
dotnet-version: '3.1.402'
2530
- name: Set Mono Version
2631
if: matrix.os == 'macos-latest'
2732
run: echo ::add-path::/Library/Frameworks/Mono.framework/Versions/6.4.0/bin
@@ -42,8 +47,6 @@ jobs:
4247
run: ./make.ps1 -frameworks net46 test-all
4348
shell: pwsh
4449
- name: Test (netcoreapp2.1)
45-
# TODO: figure out how to test on other OSs
46-
if: matrix.os == 'windows-latest'
4750
run: ./make.ps1 -frameworks netcoreapp2.1 test-all
4851
shell: pwsh
4952
- name: Test (netcoreapp3.1)

0 commit comments

Comments
 (0)