Merge pull request #61 from Fabian-Schmidt/60-encode-local-link #39
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: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.x | |
fetch-depth: 0 | |
# Loop through all the solutions in src and restore, build & test | |
- name: Restore, build & test | |
shell: pwsh | |
run: | | |
foreach ($sln in (Get-ChildItem -Recurse src\*.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 | |
} |