Skip to content

feat: Add bake-publish command #249

feat: Add bake-publish command

feat: Add bake-publish command #249

Workflow file for this run

on:
push:
branches:
- "**"
name: Build
env:
GO_VERSION: 1.23
jobs:
build:
name: Run checks and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
- name: Vet
run: make vet
- name: Test
run: make test
- name: Build
run: make
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
- run: go fmt ./...
# - name: Verify No Differences after format
# run: test -z "$(git diff)"