Skip to content

docs: fix CI badge URL (branch=main) + note for private repos #2

docs: fix CI badge URL (branch=main) + note for private repos

docs: fix CI badge URL (branch=main) + note for private repos #2

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Module graph
run: go mod download && go mod verify
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -count=1
- name: Build
run: go build -o /dev/null ./cmd/...