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
31 changes: 27 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,33 @@ jobs:
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
dotnet test tests/OpenClaw.Tray.Tests --no-build -c Debug --verbosity normal
- name: Run Shared Tests
run: >
dotnet test tests/OpenClaw.Shared.Tests
--no-build
-c Debug
--verbosity normal
--collect:"XPlat Code Coverage"
--results-directory TestResults\Shared
--logger "trx;LogFileName=OpenClaw.Shared.Tests.trx"

- name: Run Tray Tests
run: >
dotnet test tests/OpenClaw.Tray.Tests
--no-build
-c Debug
--verbosity normal
--collect:"XPlat Code Coverage"
--results-directory TestResults\Tray
--logger "trx;LogFileName=OpenClaw.Tray.Tests.trx"

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: TestResults/
if-no-files-found: warn

outputs:
semVer: ${{ steps.gitversion.outputs.semVer }}
Expand Down
Loading