Skip to content

Add manpage generation #151

Add manpage generation

Add manpage generation #151

Workflow file for this run

name: prepare
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Verify code formatting
run: |
go install mvdan.cc/gofumpt@latest
test -z $(gofumpt -l .)
- name: Run linter
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck ./...
- name: Run tests with coverage
run: go test -cover ./...