Skip to content

feat: Initial ProjectBuilders #6

feat: Initial ProjectBuilders

feat: Initial ProjectBuilders #6

Workflow file for this run

name: CI
permissions:
contents: read
actions: read
pull-requests: write
security-events: write
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/build-dotnet-matrix.yml@5a228ee7b90d3478d2e538a1ef7d6dbdd949116e # 1.3.10
with:
disableTestsOnLinux: false
disableTestsOnMacOs: false
disableTestsOnWindows: false
dotnetLogging: ${{ inputs.dotnet-logging }}
dotnetVersion: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
solution: ./ProjectBuilders.slnx
secrets: inherit