We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad2acf8 commit 3921fa7Copy full SHA for 3921fa7
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI Build Check
2
+
3
+on:
4
+ push:
5
+ branches: [ "**" ]
6
+ pull_request:
7
+ branches: [ "main" ]
8
9
+jobs:
10
+ build:
11
+ name: Build and Verify
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout Code
16
+ uses: actions/checkout@v4
17
18
+ - name: Setup .NET
19
+ uses: actions/setup-dotnet@v4
20
+ with:
21
+ dotnet-version: '10.0.x'
22
23
+ - name: Restore dependencies
24
+ run: dotnet restore
25
26
+ - name: Build
27
+ run: dotnet build --configuration Release --no-restore
0 commit comments