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 478da65 commit 6c6129bCopy full SHA for 6c6129b
.github/workflows/push_build_and_test.yml renamed to .github/workflows/build_and_test.yml
.github/workflows/create_release.yml
@@ -0,0 +1,27 @@
1
+name: BuildAndTestAndCreateRelease
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ buildAndTest:
8
+ runs-on: ubuntu-20.04
9
+ defaults:
10
+ run:
11
+ working-directory: ./source
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Setup .NET
16
+ uses: actions/setup-dotnet@v1
17
+ with:
18
+ dotnet-version: 6.0.x
19
20
+ - name: Restore dependencies
21
+ run: dotnet restore
22
23
+ - name: Build
24
+ run: dotnet build --no-restore
25
26
+ - name: Test
27
+ run: dotnet test --no-build --verbosity normal
0 commit comments