Skip to content

Updated GET call to use latest API and added FF for GCP integration (… #785

Updated GET call to use latest API and added FF for GCP integration (…

Updated GET call to use latest API and added FF for GCP integration (… #785

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