Fixed broken pipeline #61
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
# Workflow triggered by push to main | |
# For all solutions we run restore, build & test | |
name: Build & Test | |
on: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
# Loop through all the solutions in src and restore, build & test | |
# Skip DocFxCompanionTools.sln, as it is a combination of all solutions. | |
- name: Restore, build & test | |
shell: pwsh | |
run: | | |
foreach ($sln in (Get-ChildItem -Recurse src\*.sln -Exclude DocFxCompanionTools.sln)) { | |
Write-Host "Start building $($sln.FullName)" | |
& dotnet restore $sln.FullName | |
& dotnet build $sln.FullName --no-restore | |
& dotnet test $sln.FullName --no-build --verbosity normal | |
} |