Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,10 @@ jobs:
- name: Build (Debug x64)
run: msbuild VirtualTabGroups.sln /p:Configuration=Debug /p:Platform=x64

# The test project is SDK-style and isn't built by the MSBuild step above
# (the solution maps it to AnyCPU without a Build.0 entry for x64, and
# standalone MSBuild can't resolve Microsoft.NET.Sdk without the .NET SDK).
# `dotnet test` without --no-build invokes the SDK to build the test
# project itself, mirroring what we do locally.
- name: Run tests
run: dotnet test tests/VirtualTabGroups.Tests/VirtualTabGroups.Tests.csproj --nologo --no-build
run: dotnet test tests/VirtualTabGroups.Tests/VirtualTabGroups.Tests.csproj --nologo
Loading