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 c114bc1 commit 5091aa9Copy full SHA for 5091aa9
1 file changed
.github/workflows/CI.yml
@@ -0,0 +1,20 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v1
13
+ - name: Setup .NET core
14
+ uses: actions/setup-dotnet@v1
15
+ with:
16
+ dotnet-version: 3.0.100
17
+ - name: Build with dotnet
18
+ run: dotnet build --configuration Release
19
+ - name: Run unit tests
20
+ run: dotnet test
0 commit comments