perf: cap query time, bound discussion recursion, isolate health checks #17
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: pr-docker-build | |
| on: | |
| pull_request: | |
| branches: | |
| - 'master' | |
| jobs: | |
| docker-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| - | |
| name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - | |
| name: Build (no push) | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| push: false | |
| tags: hivemind:pr-check | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - | |
| name: Build succeeded | |
| run: echo "Docker image built successfully. No push to Docker Hub." |