Skip to content

[CLOUDGA-33268] Use UserDataWithRoleInfo and role_info for user listing #1006

[CLOUDGA-33268] Use UserDataWithRoleInfo and role_info for user listing

[CLOUDGA-33268] Use UserDataWithRoleInfo and role_info for user listing #1006

Workflow file for this run

name: YugabyteDB Aeon CLI Build
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
# Permission for checking out code
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
GOPRIVATE: "github.com/yugabyte/yugabytedb-managed-go-client-internal"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true
- run: |
eval `ssh-agent -s`
ssh-add - <<< '${{ secrets.GO_CLIENT_SECRET }}'
git config --global url."git@github.com:".insteadOf https://github.com/
make vet
make test
make build
make clean
name: Build CLI
- run: |
make doc OS_ARCH=linux_amd64
git status -s
if [[ -n $(git status -s) ]]; then
echo "The documentation is not proper. Please ensure that your run 'make doc'"
exit 1
fi
name: Check documentation
- run: |
make fmt-check
git status -s
if [[ -n $(git status -s) ]]; then
echo "The formatting is not proper. Please ensure that your run 'make fmt'"
exit 1
fi
name: Check formatting