We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c840d61 commit b6829c6Copy full SHA for b6829c6
.github/workflows/ci.yml
@@ -19,6 +19,7 @@ jobs:
19
# Because all the git clones are much less reliable
20
export GOPROXY=https://proxy.golang.org
21
go install github.com/onsi/ginkgo/v2/ginkgo@latest
22
+ go install github.com/cpuguy83/go-md2man@latest
23
make GOOPTS=-buildvcs=false
24
export PATH=$PATH:$HOME/go/bin
25
make integration_tests
Makefile
@@ -8,7 +8,7 @@ all: out_dir docs
8
out_dir:
9
mkdir -p $(output_dir)
10
11
-lint:
+lint: validate_docs
12
golangci-lint --build-tags $(build_tags) run
13
14
integration_tests:
@@ -26,6 +26,6 @@ clean:
26
rm -f $(output_dir)/*
27
make -C docs clean
28
29
-.PHONY: validate
30
-validate:
+.PHONY: validate_docs
+validate_docs:
31
hack/man-page-checker
0 commit comments