build(mods): Bump eng from 185f53a
to 45c17ef
in the submodules group
#708
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | |
name: Build & Tests | |
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@0.8.8 | |
with: | |
dotnet-logging: ${{ inputs.dotnet-logging }} | |
dotnet-version: 7.x | |
enableSonarQube: true | |
solution: ./Extensions.Test.sln | |
secrets: inherit |