We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eb91c9 commit 2416665Copy full SHA for 2416665
1 file changed
.github/workflows/main.yml
@@ -19,9 +19,14 @@ jobs:
19
- uses: actions/checkout@v2
20
with:
21
submodules: true
22
- - uses: actions/setup-dotnet@v1
+ - name: Setup .NET Core 2.1
23
+ uses: actions/setup-dotnet@main
24
- dotnet-version: '3.1.302'
25
+ dotnet-version: '2.1.810'
26
+ - name: Setup .NET Core 3.1
27
28
+ with:
29
+ dotnet-version: '3.1.402'
30
- name: Set Mono Version
31
if: matrix.os == 'macos-latest'
32
run: echo ::add-path::/Library/Frameworks/Mono.framework/Versions/6.4.0/bin
@@ -42,8 +47,6 @@ jobs:
42
47
run: ./make.ps1 -frameworks net46 test-all
43
48
shell: pwsh
44
49
- name: Test (netcoreapp2.1)
45
- # TODO: figure out how to test on other OSs
46
- if: matrix.os == 'windows-latest'
50
run: ./make.ps1 -frameworks netcoreapp2.1 test-all
51
52
- name: Test (netcoreapp3.1)
0 commit comments