We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f589b6b commit f47a896Copy full SHA for f47a896
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 n
19
+ run: nunit3-console.exe ".\SharpRepository.Samples\bin\Debug\net461\SharpRepository.Samples.dll" ".\SharpRepository.Tests\bin\Debug\net461\SharpRepository.Tests.dll" ".\SharpRepository.Tests.Integration\bin\Debug\net461\SharpRepository.Tests.Integration.dll"
20
0 commit comments