test: add the real-repository retrieval and observation oracle #317
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: Eval Spec | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| spec: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - uses: astral-sh/setup-uv@v9.0.0 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Existing unit tests | |
| run: npm test | |
| - name: Eval spec + validate | |
| run: | | |
| npm run test:eval:spec | |
| npm run test:eval:validate |