-
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (30 loc) · 715 Bytes
/
cicd.yml
File metadata and controls
32 lines (30 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
inputs:
dotnet-logging:
required: true
type: choice
default: minimal
options:
- quiet
- minimal
- normal
- detailed
- diagnostic
jobs:
all:
if: github.run_id != 1
name: Build & Tests
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@1.0.8
with:
disablePublish: true
dotnet-logging: ${{ inputs.dotnet-logging }}
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
enableSonarQube: ${{ vars.NE_DOTNET_SONAR }}
solution: ###SOLUTION###
secrets: inherit