Skip to content

Add project readiness status #40

Add project readiness status

Add project readiness status #40

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- name: Check formatting
run: make fmt-check
- name: Run lint
run: make lint
- name: Run tests
run: make test
- name: Build stamped binary
run: make build VERSION=0.1.0-ci
- name: Build release artifacts
run: make release-dist VERSION=0.1.0-ci