We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54fc38b commit 9de3cd7Copy full SHA for 9de3cd7
1 file changed
.github/workflows/dotnet.yml
@@ -9,17 +9,21 @@ on:
9
jobs:
10
build:
11
12
- runs-on: ubuntu-latest
+ runs-on: windows-latest
13
14
steps:
15
- uses: actions/checkout@v2
16
+
17
- name: Setup .NET
18
uses: actions/setup-dotnet@v1
19
with:
20
dotnet-version: 5.0.x
21
22
- name: Restore dependencies
23
run: dotnet restore
24
25
- name: Build
26
run: dotnet build --no-restore
27
28
- name: Test
29
run: dotnet test --no-build --verbosity normal
0 commit comments