We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45bc5a7 commit 902409cCopy full SHA for 902409c
1 file changed
.github/workflows/default.yml
@@ -0,0 +1,22 @@
1
+name: "default"
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '*/*'
7
+ - '*'
8
+ tags:
9
+ - '!refs/tags/*'
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v1
17
+ - name: Setup .NET Core
18
+ uses: actions/setup-dotnet@v1
19
+ - name: Build
20
+ run: dotnet build -c Release
21
+ - name: Tests
22
+ run: dotnet test -c Release --no-build
0 commit comments