Skip to content

Commit 69114c2

Browse files
fix: Simplify benchmark CI job to avoid gh-pages requirement
Remove benchmark result storage action that required gh-pages branch. Benchmarks now run as part of CI without storing historical data. This fixes the CI failure without requiring GitHub Pages setup. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3c7b9ba commit 69114c2

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -65,16 +65,4 @@ jobs:
6565
run: go mod download
6666

6767
- name: Run benchmarks
68-
run: go test -bench=. -benchmem -benchtime=1s -run=^$$ ./... | tee benchmark-results.txt
69-
70-
- name: Store benchmark result
71-
uses: benchmark-action/github-action-benchmark@v1
72-
with:
73-
tool: 'go'
74-
output-file-path: benchmark-results.txt
75-
github-token: ${{ secrets.GITHUB_TOKEN }}
76-
auto-push: false
77-
comment-on-alert: true
78-
alert-threshold: '150%'
79-
fail-on-alert: false
80-
summary-always: true
68+
run: go test -bench=. -benchmem -benchtime=1s -run=^$$ ./...

0 commit comments

Comments
 (0)