Skip to content

Add vibecoded badge to README #3

Add vibecoded badge to README

Add vibecoded badge to README #3

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -v
- name: Build
run: go build ./...