This repository was archived by the owner on Sep 11, 2025. It is now read-only.
feat: initial implementation of Modus Agents #595
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci-runtime-integration-tests | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| paths: | |
| - .github/workflows/ci-runtime-integration-tests.yml | |
| - runtime/** | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| runtime-integration-tests: | |
| name: test (runtime) | |
| runs-on: warp-ubuntu-latest-x64-4x | |
| if: github.event.pull_request.draft == false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24.2 | |
| cache-dependency-path: runtime/go.sum | |
| - name: Run Integration Tests | |
| working-directory: runtime | |
| run: make test-integration-ci | |
| - name: Generate Test Summary | |
| if: always() | |
| uses: test-summary/action@v2 | |
| with: | |
| paths: runtime/report.xml |