Performance of QueryService client over SLO + refactoring of traces #3220
Workflow file for this run
This file contains 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: check-codegen | |
on: | |
push: | |
branches: | |
- master | |
- release-* | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
concurrency: | |
group: codegen-${{ github.ref }}-${{ matrix.os }}-${{ matrix.go-version }} | |
cancel-in-progress: true | |
if: (!contains(github.event.pull_request.labels.*.name, 'slo only')) | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
go-version: [1.21.x, 1.22.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Go Env | |
run: | | |
go env | |
- name: Build | |
run: | | |
go install ./internal/cmd/gtrace | |
go install go.uber.org/mock/[email protected] | |
- name: Clean and re-generate *_gtrace.go files | |
run: | | |
rm -f ./trace/*_gtrace.go | |
go generate ./trace | |
go generate ./... | |
- name: Check repository diff | |
run: bash ./.github/scripts/check-work-copy-equals-to-committed.sh "code-generation not equal with committed" |