We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcbee47 commit 077dde1Copy full SHA for 077dde1
.github/workflows/ci.yml
@@ -63,6 +63,9 @@ jobs:
63
output-file-path: examples/go/output.txt
64
skip-fetch-gh-pages: true
65
fail-on-alert: true
66
+ github-token: ${{ secrets.GITHUB_TOKEN }}
67
+ comment-on-alert: true
68
+ alert-comment-cc-users: '@rhysd'
69
- run: node ./scripts/ci_validate_modification.js before_data.js 'Go Benchmark'
70
benchmarkjs:
71
name: Run JavaScript benchmark example
examples/go/fib_test.go
@@ -6,12 +6,12 @@ import (
6
7
func BenchmarkFib10(b *testing.B) {
8
for i := 0; i < b.N; i++ {
9
- var _ = Fib(10)
+ var _ = Fib(13)
10
}
11
12
13
func BenchmarkFib20(b *testing.B) {
14
15
- var _ = Fib(20)
+ var _ = Fib(23)
16
17
0 commit comments