Skip to content

Commit edeecf0

Browse files
Add GitHub Actions workflow for .NET build
Add GitHub Actions workflow for automated package build validation
1 parent 08fd03e commit edeecf0

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)