feat: agent web search strategy (configurable AGENT_WEB_SEARCH_STRATEGY) + CLAUDE.md pointer #215
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jdx/mise-action@v3 | |
| with: | |
| install: true | |
| cache: true | |
| - run: mise run lint | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jdx/mise-action@v3 | |
| with: | |
| install: true | |
| cache: true | |
| - run: mise run test | |
| build-image: | |
| name: Build image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: docker/setup-buildx-action@v3 | |
| - uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| push: false | |
| tags: lucidvault:ci | |
| load: true | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - name: Save image | |
| if: github.event_name == 'push' | |
| run: docker save lucidvault:ci -o /tmp/image.tar | |
| - uses: actions/upload-artifact@v4 | |
| if: github.event_name == 'push' | |
| with: | |
| name: docker-image | |
| path: /tmp/image.tar | |
| retention-days: 1 |