Skip to content

Commit a7bc236

Browse files
committed
release v1.21.0
1 parent 4bdcce3 commit a7bc236

File tree

6 files changed

+65
-35
lines changed

6 files changed

+65
-35
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
/coverage
88
.idea
99
.env
10+
.ai

action-types.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,5 @@ inputs:
5555
type: string
5656
max-items-in-chart:
5757
type: integer
58+
go-force-package-suffix:
59+
type: boolean

action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ inputs:
7979
max-items-in-chart:
8080
description: 'Max data points in a benchmark chart to avoid making the chart too busy. Value must be unsigned integer. No limit by default'
8181
required: false
82+
go-force-package-suffix:
83+
description: 'Force adding package suffix to Go benchmark names even when name already contains package reference'
84+
required: false
85+
default: 'false'
8286

8387
runs:
8488
using: 'node20'

dist/src/config.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/extract.js

Lines changed: 55 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"format": "prettier -w **",
1212
"format:check": "prettier -c **",
1313
"test": "jest",
14+
"test-s": "jest --silent",
1415
"test:watch": "jest --watch",
1516
"coverage": "jest --coverage",
1617
"coverage:open": "jest --coverage && open ./coverage/lcov-report/index.html"

0 commit comments

Comments
 (0)