We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0fdc9c6 + 4835354 commit 992193dCopy full SHA for 992193d
1 file changed
.github/workflows/buildAndTest.yml
@@ -0,0 +1,20 @@
1
+name: .NET Core
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: windows-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Setup .NET Core
13
+ uses: actions/setup-dotnet@v1
14
+ with:
15
+ dotnet-version: 3.1.101
16
+ - name: Build with dotnet
17
+ run: dotnet build --configuration Release
18
+ - name: Test with nunit3
19
+ run: dotnet test
20
0 commit comments