Skip to content

Sync monorepo state at "Don't commit anything from the bin/ folder + kill EB files in gitignore" #189

Sync monorepo state at "Don't commit anything from the bin/ folder + kill EB files in gitignore"

Sync monorepo state at "Don't commit anything from the bin/ folder + kill EB files in gitignore" #189

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