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