Add tests for rego validation in ruletypes #10851
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
# SPDX-FileCopyrightText: Copyright 2023 The Minder Authors | |
# SPDX-License-Identifier: Apache-2.0 | |
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# Install the `buf` CLI | |
- uses: bufbuild/buf-action@3fb70352251376e958c4c2c92c3818de82a71c2b # v1.0.2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
push: false | |
archive: false | |
pr_comment: false | |
lint: true | |
format: false | |
breaking: false # Check for breaking changes in the next step | |
proto-breaking-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: bufbuild/buf-action@3fb70352251376e958c4c2c92c3818de82a71c2b # v1.0.2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
push: false | |
archive: false | |
pr_comment: false | |
format: false | |
breaking: true | |
input: 'proto' | |
breaking_against: "https://github.com/mindersec/minder.git#branch=main,subdir=proto" | |
sqlc-generation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
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) |