diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 95fa780b4a7..6d679a6f837 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -64,7 +64,10 @@ jobs: - name: Find and merge benchmarks # TODO: Add at least one benchmark to every package type to remove this if: matrix.package == 'core' - run: jq -s '.[0].benchmarks = ([.[].benchmarks] | add) | if .[0].benchmarks == null then null else .[0] end' opentelemetry-*/tests/*${{ matrix.package }}*.json > output.json + run: >- + jq -s '.[0].benchmarks = ([.[].benchmarks] | add) + | if .[0].benchmarks == null then null else .[0] end' + opentelemetry-*/tests/*${{ matrix.package }}*.json > output.json - name: Report on benchmark results # TODO: Add at least one benchmark to every package type to remove this if: matrix.package == 'core'