Skip to content

Print project list as multiple rows in whoami subcommand #3005

Print project list as multiple rows in whoami subcommand

Print project list as multiple rows in whoami subcommand #3005

Workflow file for this run

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@v4
# Install the `buf` CLI
- uses: bufbuild/buf-setup-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Lint your Protobuf sources
- uses: bufbuild/buf-lint-action@v1
# TODO(jaosorior): Re-enable this once we have a stable API.
# proto-breaking-changes:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: bufbuild/buf-setup-action@v1
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# - uses: bufbuild/buf-breaking-action@v1
# with:
# against: "https://github.com/stacklok/minder.git#branch=main"
sqlc-generation:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
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)