Skip to content

Commit 6817bbf

Browse files
shanselmanCopilot
andauthored
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>
1 parent 4549b62 commit 6817bbf

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,14 @@ jobs:
3939
run: dotnet build src/OpenClaw.Tray.WinUI -c Debug -r win-x64
4040

4141
- name: Build Tests
42-
run: dotnet build tests/OpenClaw.Shared.Tests -c Debug
42+
run: |
43+
dotnet build tests/OpenClaw.Shared.Tests -c Debug
44+
dotnet build tests/OpenClaw.Tray.Tests -c Debug
4345
4446
- name: Run Tests
45-
run: dotnet test tests/OpenClaw.Shared.Tests --no-build -c Debug --verbosity normal
47+
run: |
48+
dotnet test tests/OpenClaw.Shared.Tests --no-build -c Debug --verbosity normal
49+
dotnet test tests/OpenClaw.Tray.Tests --no-build -c Debug --verbosity normal
4650
4751
outputs:
4852
semVer: ${{ steps.gitversion.outputs.semVer }}

0 commit comments

Comments
 (0)