Skip to content

Run QA tests with Go 1.26 #795

Run QA tests with Go 1.26

Run QA tests with Go 1.26 #795

Workflow file for this run

name: 📊 Benchmarks
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: "1.25"
cache-dependency-path: |
go.sum
cmd/zen-go/go.sum
instrumentation/**/go.sum
sample-apps/**/go.sum
end2end/mock-server/go.mod
- name: Run benchmarks
run: |
set -o pipefail
echo "## Benchmark Results" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
make benchmark 2>&1 | tee -a $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY