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 2d07b63 commit d283813Copy full SHA for d283813
.github/workflows/ci-build.yml
@@ -0,0 +1,24 @@
1
+name: CI Build
2
+
3
+on: [push, pull_request, workflow_dispatch]
4
5
+jobs:
6
+ build-core:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Setup .NET Core
11
+ uses: actions/setup-dotnet@v1
12
+ with:
13
+ dotnet-version: 6.0.x
14
+ - name: Restore
15
+ working-directory: dotNet
16
+ run: dotnet restore TaskLogging.sln
17
+ env:
18
+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
19
20
+ - name: Build
21
22
+ run: dotnet build --no-restore -c Release TaskLogging.sln
23
24
0 commit comments