We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 363709d commit 5ecd3ddCopy full SHA for 5ecd3dd
.github/workflows/dotnet.yml
@@ -0,0 +1,26 @@
1
+name: .NET
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+env:
10
+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
11
+ DOTNET_CLI_TELEMETRY_OPTOUT: true
12
+ IGNORE_NORMALISATION_GIT_HEAD_MOVE: 1
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Setup .NET
20
+ uses: actions/setup-dotnet@v4
21
+ with:
22
+ dotnet-version: 8.0.x
23
+ - name: Restore dependencies
24
+ run: dotnet tool restore
25
+ - name: Build
26
+ run: dotnet cake --target AppVeyor --verbosity Diagnostic
0 commit comments