Skip to content

Commit 7f5ca01

Browse files
authored
fix missing frameworks on build (#58)
1 parent 26861a7 commit 7f5ca01

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,20 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
strategy:
2020
matrix:
21-
os: [ubuntu-latest]
21+
os: [windows-latest]
2222

2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525
- name: Setup .NET Core
26-
uses: actions/setup-dotnet@v1
26+
uses: actions/setup-dotnet@v2
2727
with:
2828
dotnet-version: ${{ env.DOTNET_VERSION }}
2929

30+
- name: Setup .NET 5
31+
uses: actions/setup-dotnet@v2
32+
with:
33+
dotnet-version: 5.0.x
34+
3035
- name: Install dependencies
3136
run: dotnet restore
3237

0 commit comments

Comments
 (0)