Skip to content

Commit 14e7555

Browse files
committed
Add goreleaser job
1 parent c943b3b commit 14e7555

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,18 @@ jobs:
1919
with:
2020
fetch-depth: 0
2121
- uses: ./.github/actions/setup
22-
- run: goreleaser release --snapshot --clean
22+
- run: go build .
2323

2424
lint:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2828
- uses: ./.github/actions/setup
29-
- name: lint
30-
run: golangci-lint run --verbose ./...
29+
- run: golangci-lint run --verbose ./...
30+
31+
goreleaser:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
35+
- uses: ./.github/actions/setup
36+
- run: goreleaser check

0 commit comments

Comments
 (0)