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