Skip to content

Merge pull request #60 from drpedapati/chore/main-rollup-20260223 #147

Merge pull request #60 from drpedapati/chore/main-rollup-20260223

Merge pull request #60 from drpedapati/chore/main-rollup-20260223 #147

Workflow file for this run

name: build
on:
push:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: fmt
run: |
make fmt
git diff --exit-code || (echo "::error::Code is not formatted. Run 'make fmt' and commit the changes." && exit 1)
- name: Build
run: make build-all