We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8f21f commit b7bd533Copy full SHA for b7bd533
.github/workflows/benchmarks.yml
@@ -16,12 +16,10 @@ jobs:
16
steps:
17
- name: Checkout Core Repo @ SHA - ${{ github.sha }}
18
uses: actions/checkout@v4
19
- - name: Install uv
20
- uses: astral-sh/setup-uv@v6
21
- - name: Install tox-uv
22
- run: uv tool install --python-preference only-managed --python 3.13 tox-uv
23
- - name: Set up Python
24
- run: uv python install --python-preference only-managed 3.13
+ - name: Setup Python
+ uses: actions/setup-python@v5
+ with:
+ python-version: "3.13.6"
25
- name: Run tox
26
run: tox -e benchmark-opentelemetry-sdk -- -k opentelemetry-sdk/benchmarks --benchmark-json=opentelemetry-sdk/output.json
27
- name: Report on SDK benchmark results
0 commit comments