From 03feb2ba3dc71c3e0aaaf4c54b57ae89f9068960 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 18 Mar 2026 00:58:28 +0000 Subject: [PATCH] ci: add OpenClaw.Tray.Tests to the test job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 93-test Tray test suite (added in PR #45) was never wired up to the CI workflow — only OpenClaw.Shared.Tests ran. This adds build + run steps for OpenClaw.Tray.Tests so all 571 tests are validated on every push and pull request. 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 }}