build(mods): Bump eng from 45c17ef
to 0dc1db3
in the submodules group
#75
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/[email protected] | |
with: | |
enableSonarQube: true | |
dotnet-logging: ${{ inputs.dotnet-logging }} | |
dotnet-version: | | |
6.x | |
7.x | |
8.x | |
solution: ./Extensions.Hosting.WinForms.sln | |
runs-on-build: windows-latest | |
runs-on-tests: windows-latest | |
secrets: inherit |