test: add SDK benchmarks e2e workflow #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: SDK Benchmarks | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| sdk-version: | |
| description: "SDK version to benchmark (e.g. 2.22.0 or latest)" | |
| default: "latest" | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| benchmark: | |
| uses: getsentry/sdk-benchmarks/.github/workflows/e2e.yml@main | |
| with: | |
| language: python | |
| sdk-version: ${{ inputs.sdk-version || 'latest' }} | |
| iterations: 1 | |
| post-comment: true |