Add ClusterfuzzLite #7448
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: Code Generation | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
paths-ignore: | |
- "**.md" | |
- "docs/**" | |
- "**.txt" | |
- "images/**" | |
- "LICENSE" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "**.md" | |
- "docs/**" | |
- "**.txt" | |
- "images/**" | |
- "LICENSE" | |
jobs: | |
lint-protos: | |
runs-on: ubuntu-latest | |
steps: | |
# Run `git checkout` | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
# Install the `buf` CLI | |
- uses: bufbuild/buf-setup-action@dde0b9351db90fbf78e345f41a57de8514bf1091 # v1.32.2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# Lint your Protobuf sources | |
- uses: bufbuild/buf-lint-action@06f9dd823d873146471cfaaf108a993fe00e5325 # v1.1.1 | |
proto-breaking-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- uses: bufbuild/buf-setup-action@dde0b9351db90fbf78e345f41a57de8514bf1091 # v1.32.2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: bufbuild/buf-breaking-action@c57b3d842a5c3f3b454756ef65305a50a587c5ba # v1.1.4 | |
with: | |
against: "https://github.com/stacklok/minder.git#branch=main" | |
sqlc-generation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: Set up Go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | |
with: | |
go-version-file: "go.mod" | |
- name: Make bootstrap | |
run: | | |
make bootstrap | |
- name: Generate Go code from SQL and check for syntax errors | |
shell: bash | |
run: | | |
make sqlc | |
- name: Check for uncommitted SQLC changes | |
run: | | |
git diff --exit-code || (echo "Error: Uncommitted changes detected after running 'sqlc generate'. Please commit the changes and try again." && exit 1) |