We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5910c4 commit f459361Copy full SHA for f459361
1 file changed
.github/workflows/dotnet_build_master.yml
@@ -0,0 +1,22 @@
1
+# This workflow will build a .NET project
2
+# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3
+
4
+name: Build contributors PRs to master
5
6
+on:
7
+ workflow_dispatch:
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - name: Setup .NET
16
+ uses: actions/setup-dotnet@v3
17
+ with:
18
+ dotnet-version: 8.0.x
19
+ - name: Restore dependencies
20
+ run: dotnet restore
21
+ - name: Build
22
+ run: dotnet build -c Release --no-restore
0 commit comments