WebScaffold: add DumpLogEventsToConsole #182
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: "Host: CI main/windows/sqlite/debug" | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: # Allows manual triggering from the UI | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/[email protected] | |
with: | |
dotnet-version: '9.0.x' | |
- name: Restore dependencies | |
run: dotnet restore ./odin-core.sln | |
- name: Check for Vulnerable Packages | |
run: echo "No package analysis on Windows" | |
- name: Build | |
# below: %3B is ASCII for semicolon | |
run: dotnet build --no-restore --configuration Debug --warnaserror --property:DefineConstants="CI_GITHUB%3BCI_WINDOWS" ./odin-core.sln | |
- name: Test | |
run: dotnet test --no-build --configuration Debug --verbosity normal ./odin-core.sln | |
# run: dotnet test --no-build --configuration Debug --verbosity normal ./odin-core.sln | |
# run: dotnet test --no-build --filter "FullyQualifiedName=Odin.Hosting.Tests._Universal.Peer.PeerAppNotificationsWebSocket.PeerAppNotificationTests.CanGetMultiplePeerAppNotificationsAcrossAGroupOfIdentitiesWhenUsingACentralIdentity" --configuration Debug --verbosity normal ./tests/apps/Odin.Hosting.Tests/Odin.Hosting.Tests.csproj | |
# run: dotnet test --no-build --filter "FullyQualifiedName=Odin.Hosting.Tests._Universal.Peer" --configuration Debug --verbosity normal ./tests/apps/Odin.Hosting.Tests/Odin.Hosting.Tests.csproj |