We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b50da06 commit 471c80cCopy full SHA for 471c80c
1 file changed
.github/workflows/benchmark.yml
@@ -0,0 +1,21 @@
1
+name: SDK Benchmarks
2
+
3
+on:
4
+ pull_request:
5
+ workflow_dispatch:
6
+ inputs:
7
+ sdk-version:
8
+ description: "SDK version to benchmark (e.g. 2.22.0 or latest)"
9
+ default: "latest"
10
11
+permissions:
12
+ pull-requests: write
13
14
+jobs:
15
+ benchmark:
16
+ uses: getsentry/sdk-benchmarks/.github/workflows/e2e.yml@feat/e2e-go-benchmarks
17
+ with:
18
+ language: python
19
+ sdk-version: ${{ inputs.sdk-version || 'latest' }}
20
+ benchmarks-ref: feat/e2e-go-benchmarks
21
+ iterations: 4
0 commit comments