[chore][exporterhelper] Clarify that you need to set at least one of … #2915
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: Automation - Performance | |
on: | |
push: | |
branches: [main] | |
permissions: read-all | |
jobs: | |
runperf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Setup Go | |
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
with: | |
go-version: oldstable | |
cache: false | |
- name: Cache Go | |
id: go-cache | |
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 | |
with: | |
path: | | |
~/go/bin | |
~/go/pkg/mod | |
key: go-cache-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('**/go.sum') }} | |
- 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" |