-
Notifications
You must be signed in to change notification settings - Fork 28
/
action.yml
34 lines (34 loc) · 1.06 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: "Criterion Compare PRs"
description: "Run Criterion against PRs"
inputs:
token:
description: "Github Token required to comment in the PR"
required: false
default: ${{ github.token }}
branchName:
description: "The name of the branch to compare with. This default uses the branch which is being pulled against"
required: true
default: ""
cwd:
description: "Sets the directory to run the benchmarks, relative to the project directory"
required: false
default: ""
package:
description: "Benchmark only the specified packages"
required: false
default: ""
benchName:
description: "Compare only this benchmark"
required: false
default: ""
features:
description: "A list of comma seperated features that are activated for this benchmark"
required: false
default: ""
defaultFeatures:
description: "Enable the default features of a crate while running the benchmark, usually the default features are enabled"
required: false
default: true
runs:
using: "node16"
main: "dist/index.js"