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 4d6549b commit 3341965Copy full SHA for 3341965
.github/workflows/benchmarks.yml
@@ -20,6 +20,10 @@ jobs:
20
uses: actions/checkout@v4
21
- name: Install tox
22
run: pip install tox-uv
23
+ - name: Install Git # since Git isn't available in the container image used above
24
+ run: |
25
+ apt-get update
26
+ apt-get install -y git
27
- name: Run tox
28
run: tox -e benchmark-opentelemetry-sdk -- -k opentelemetry-sdk/benchmarks --benchmark-json=opentelemetry-sdk/output.json
29
- name: Report on SDK benchmark results
0 commit comments