From 38d2c59b99752a14a50c1e0ddf8290d6b2f124e4 Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Thu, 9 Sep 2021 16:21:54 +0200 Subject: [PATCH] test --- .github/workflows/.release.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/.release.yml b/.github/workflows/.release.yml index c316e88..4a26e7d 100644 --- a/.github/workflows/.release.yml +++ b/.github/workflows/.release.yml @@ -23,7 +23,14 @@ jobs: go-version: 1.17 - name: test - run: pwd ; ls + run: | + go run main.go completion bash > bash-completion + go run main.go completion zsh > zsh-completion + go run main.go completion fish > fish-completion + mkdir man + go run main.go gendoc --type man + pwd + ls - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2