From 1742d758aa21c74e69c470def7b0b5061974ef5e Mon Sep 17 00:00:00 2001 From: Marques Johansson Date: Wed, 12 Aug 2020 15:06:12 -0400 Subject: [PATCH] verify goreleaser file is valid in each push --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa30e9a..5409dc2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,12 @@ jobs: with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. version: v1.30 + - + name: Check GoReleaser + uses: goreleaser/goreleaser-action@v2 + with: + version: latest + args: check test: name: test runs-on: ubuntu-latest @@ -24,6 +30,7 @@ jobs: matrix: go: [ '1.14' ] steps: + - uses: actions/checkout@v2 - uses: actions/setup-go@v1 with: go-version: ${{ matrix.go }}