Removed SimulatedOrder::prev_order since it was not used. #93
This file contains 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 | |
on: | |
workflow_dispatch: | |
pull_request: | |
merge_group: | |
push: | |
branches: [develop] | |
jobs: | |
build-docker: | |
name: Build Docker image | |
runs-on: warp-ubuntu-latest-x64-16x | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- 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: . | |
push: false |