Cherry pick PR(155)/fix: calculate the overhead with the maximum value #430
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: Pre-submit check | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: {} | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
presubmit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
cache: false | |
- name: Install toolchain | |
run: | | |
make toolchain | |
- name: Presubmit check | |
run: | | |
make presubmit |