We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0acc622 commit ea18370Copy full SHA for ea18370
.github/workflows/build.yml
@@ -0,0 +1,31 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
19
+ - name: Set up .NET
20
+ uses: actions/setup-dotnet@v4
21
+ with:
22
+ dotnet-version: '9.0.x' # Adjust the version as needed
23
24
+ - name: Install .NET Aspire workload
25
+ run: dotnet workload update && dotnet workload install aspire
26
27
+ - name: Restore dependencies
28
+ run: dotnet restore
29
30
+ - name: Build solution
31
+ run: dotnet build --no-restore --configuration Release
0 commit comments