We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26861a7 commit 7f5ca01Copy full SHA for 7f5ca01
1 file changed
.github/workflows/dotnet.yml
@@ -18,15 +18,20 @@ jobs:
18
runs-on: ${{ matrix.os }}
19
strategy:
20
matrix:
21
- os: [ubuntu-latest]
+ os: [windows-latest]
22
23
steps:
24
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
25
- name: Setup .NET Core
26
- uses: actions/setup-dotnet@v1
+ uses: actions/setup-dotnet@v2
27
with:
28
dotnet-version: ${{ env.DOTNET_VERSION }}
29
30
+ - name: Setup .NET 5
31
32
+ with:
33
+ dotnet-version: 5.0.x
34
+
35
- name: Install dependencies
36
run: dotnet restore
37
0 commit comments