Skip to content

Sync monorepo state at "Add option to access primary db only for calls to retrieving user inf…" #179

Sync monorepo state at "Add option to access primary db only for calls to retrieving user inf…"

Sync monorepo state at "Add option to access primary db only for calls to retrieving user inf…" #179

Workflow file for this run

name: Verify
on:
push:
branches:
- master
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
verify:
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup Go environment
uses: ./.github/actions/go-setup
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
- name: Codegen
run: |
make codegen
RES=$(git status --porcelain)
if [ -n "$RES" ]; then
echo "ERROR: running codegen changed something"
echo "$RES"
exit 1
fi
- name: Build
run: |
make build