Merge pull request #1013 from size12/linter2 #2686
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 | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
go-version: [1.20.x, 1.21.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/mockgen@892b665398ecece7c7a900d2a2f2fa3dac07e4c4 | |
- 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" |