From 6817bbffcb2dfa215d53efd1358ce3b064fbf45e Mon Sep 17 00:00:00 2001 From: Scott Hanselman Date: Tue, 17 Mar 2026 19:02:39 -0700 Subject: [PATCH] ci: add OpenClaw.Tray.Tests to the CI test job The 93-test Tray test suite (added in PR #45) was never wired into CI. Adds build + run steps for OpenClaw.Tray.Tests so all 571 tests validate on every push/PR. Closes #58 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b93343..7a214e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,10 +39,14 @@ jobs: run: dotnet build src/OpenClaw.Tray.WinUI -c Debug -r win-x64 - name: Build Tests - run: dotnet build tests/OpenClaw.Shared.Tests -c Debug + run: | + dotnet build tests/OpenClaw.Shared.Tests -c Debug + dotnet build tests/OpenClaw.Tray.Tests -c Debug - name: Run Tests - run: dotnet test tests/OpenClaw.Shared.Tests --no-build -c Debug --verbosity normal + run: | + dotnet test tests/OpenClaw.Shared.Tests --no-build -c Debug --verbosity normal + dotnet test tests/OpenClaw.Tray.Tests --no-build -c Debug --verbosity normal outputs: semVer: ${{ steps.gitversion.outputs.semVer }}