File tree Expand file tree Collapse file tree 1 file changed +5
-18
lines changed
Expand file tree Collapse file tree 1 file changed +5
-18
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010 build-and-test :
11- runs-on : ${{ matrix.os }}
11+ runs-on : windows-latest
1212 strategy :
1313 matrix :
14- include :
15- - os : ubuntu-latest
16- dotnet-version : ' 8.0.x'
17- test-framework : ' net8.0'
18- - os : ubuntu-latest
19- dotnet-version : ' 9.0.x'
20- test-framework : ' net9.0'
21- - os : windows-latest
22- dotnet-version : ' 8.0.x'
23- test-framework : ' net48'
24- - os : windows-latest
25- dotnet-version : ' 8.0.x'
26- test-framework : ' net481'
14+ test-framework : [ 'net8.0', 'net9.0', 'net48', 'net481' ]
2715 steps :
2816 - uses : actions/checkout@v2
29- - name : Install OpenSSL (Ubuntu only)
30- if : runner.os == 'Linux'
31- run : sudo apt-get update && sudo apt-get install -y libssl-dev
3217 - name : Setup .NET
3318 uses : actions/setup-dotnet@v3
3419 with :
35- dotnet-version : ${{ matrix.dotnet-version }}
20+ dotnet-version : |
21+ 8.0.x
22+ 9.0.x
3623 - name : Install dependencies
3724 working-directory : src
3825 run : dotnet restore
You can’t perform that action at this time.
0 commit comments