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
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
Loading