There was an error while loading. Please reload this page.
2 parents 08fd03e + edeecf0 commit 20892d1Copy full SHA for 20892d1
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,26 @@
1
+name: Build
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
17
+ - name: Setup .NET
18
+ uses: actions/setup-dotnet@v4
19
+ with:
20
+ dotnet-version: 8.0.x
21
22
+ - name: Restore
23
+ run: dotnet restore DebugProbe.AspNetCore/DebugProbe.AspNetCore.csproj
24
25
+ - name: Build
26
+ run: dotnet build DebugProbe.AspNetCore/DebugProbe.AspNetCore.csproj --no-restore --configuration Release
0 commit comments