Allow VM_ID as input to docker publish job #2404
Workflow file for this run
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: Bench | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
bench: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "~1.21.12" | |
check-latest: true | |
- run: go mod download | |
shell: bash | |
- run: ./scripts/build_bench_precompiles.sh | |
shell: bash |