chore: reduce t.Parallel() fanout (#2741) #70
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: "Main" | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: | |
| - "main" | |
| permissions: | |
| contents: "read" | |
| jobs: | |
| benchmarks: | |
| name: "Run Go benchmarks on Main" | |
| runs-on: "depot-ubuntu-24.04-4" | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: "actions/[email protected]" | |
| with: | |
| fetch-depth: 0 | |
| - uses: "actions/[email protected]" | |
| with: | |
| go-version-file: "./go.mod" | |
| cache-dependency-path: "./go.sum" | |
| check-latest: true | |
| - name: "Run benchmark on Main" | |
| run: | | |
| set -o pipefail | |
| go run mage.go benchmark:all | tee bench_output.txt | |
| - name: "Get JSON for benchmark" | |
| uses: "benchmark-action/github-action-benchmark@4bdcce38c94cec68da58d012ac24b7b1155efe8b" # v1.20.7 | |
| with: | |
| # What benchmark tool the output.txt came from | |
| tool: "go" | |
| # Where the output from the benchmark tool is stored | |
| output-file-path: "bench_output.txt" | |
| # Updates the file content instead of generating a Git commit in GitHub Pages branch | |
| external-data-json-path: "./cache/benchmark-data.json" | |
| # Workflow will fail when an alert happens | |
| fail-on-alert: true | |
| github-token: "${{ secrets.GITHUB_TOKEN }}" | |
| comment-on-alert: true | |
| - name: "Get CPU information" | |
| uses: "kenchan0130/actions-system-info@master" | |
| id: "system-info" | |
| - name: "Save benchmark JSON" | |
| uses: "actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830" # v4.3.0 | |
| with: | |
| path: "./cache/benchmark-data.json" | |
| # Save with commit hash to avoid "cache already exists" | |
| # Save with OS & CPU info to prevent comparing against results from different CPUs | |
| key: "${{ github.sha }}-${{ runner.os }}-${{ steps.system-info.outputs.cpu-model }}-go-benchmark" |