Update module golang.org/x/tools to v0.29.0 (#12032) #1924
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: Automation - Performance | |
on: | |
push: | |
branches: [main] | |
permissions: read-all | |
jobs: | |
runperf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Go | |
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version: ~1.22.9 | |
- name: Run benchmark | |
run: make gobenchmark | |
# Disabling until fine-grained permissions token enabled for the | |
# repository | |
#- name: Store benchmark result | |
# uses: benchmark-action/github-action-benchmark@v1 | |
# with: | |
# tool: 'go' | |
# output-file-path: benchmarks.txt | |
# gh-pages-branch: gh-pages | |
# auto-push: true | |
# github-token: ${{ secrets.GITHUB_TOKEN }} | |
# benchmark-data-dir-path: "docs/dev/bench" |