Skip to content

ci: add workflow to verify docs #2

ci: add workflow to verify docs

ci: add workflow to verify docs #2

Workflow file for this run

name: Verify Docs
on:
pull_request:
merge_group:
jobs:
build:
name: Verify Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run:
make docs && git status --porcelain | grep -E '^.M' && (echo "Run 'make docs' and push it" && exit 1)