feat: add ExecSessionManager lifecycle management for background proc… #15
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| name: Check & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Type check | |
| run: bun run check | |
| - name: Test | |
| run: bun test | |
| - name: Coverage | |
| run: bun run coverage | |
| - name: Planning benchmark | |
| run: bun run braincode -- benchmark --heuristic | |
| - name: Execution benchmark | |
| run: bun run braincode -- benchmark --execute --task login-validation |