This repository was archived by the owner on Jan 12, 2026. It is now read-only.
feat: don't send receipts in flashblocks websocket #133
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: Docker Build Check | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-docker: | |
| name: Build Docker image | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Docker QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Docker Build | |
| uses: docker/build-push-action@v5 | |
| with: | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| platforms: linux/amd64 | |
| context: . | |
| target: rbuilder-runtime | |
| push: false |