123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- name: Codegen
- on:
- push:
- tags:
- - v*
- branches:
- - master
- - release-*
- pull_request:
- branches:
- - master
- - release-*
- defaults:
- run:
- # reference: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell
- shell: bash --noprofile --norc -eo pipefail -x {0}
- # cancel the in-progress workflow when PR is refreshed.
- concurrency:
- group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
- cancel-in-progress: true
- permissions:
- contents: read
- jobs:
- codegen:
- runs-on: ubuntu-20.04
- if: "!contains(github.event.pull_request.labels.*.name, 'skip-ci')"
- steps:
- - name: checkout
- uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - uses: actions/setup-go@v4
- with:
- go-version: "1.21"
- - name: run codegen
- run: GOPATH=$(go env GOPATH) make codegen
- - name: validate codegen
- run: tests/scripts/validate_modified_files.sh codegen
|