We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3697d62 commit f495f06Copy full SHA for f495f06
.github/workflows/build.yml
@@ -0,0 +1,33 @@
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: .NET
5
6
+on:
7
+ push:
8
+ branches:
9
+ - main
10
+ pull_request:
11
12
13
+ workflow_dispatch:
14
15
+jobs:
16
+ build:
17
18
+ runs-on: ubuntu-latest
19
20
+ steps:
21
+ - name: Checkout
22
+ uses: actions/checkout@v3
23
24
+ - name: Setup .NET
25
+ uses: actions/setup-dotnet@v3
26
+ with:
27
+ dotnet-version: 6.0.x
28
29
+ - name: Restore dependencies
30
+ run: dotnet restore
31
32
+ - name: Build
33
+ run: dotnet build --no-restore
0 commit comments