Skip to content

Commit 9de3cd7

Browse files
authored
Update dotnet.yml
1 parent 54fc38b commit 9de3cd7

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/dotnet.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,21 @@ on:
99
jobs:
1010
build:
1111

12-
runs-on: ubuntu-latest
12+
runs-on: windows-latest
1313

1414
steps:
1515
- uses: actions/checkout@v2
16+
1617
- name: Setup .NET
1718
uses: actions/setup-dotnet@v1
1819
with:
1920
dotnet-version: 5.0.x
21+
2022
- name: Restore dependencies
2123
run: dotnet restore
24+
2225
- name: Build
2326
run: dotnet build --no-restore
27+
2428
- name: Test
2529
run: dotnet test --no-build --verbosity normal

0 commit comments

Comments
 (0)