Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,21 @@ jobs:
with:
name: testdata-windows
path: testdata

goreleaser_check:
runs-on: ubuntu-latest
name: GoReleaser Check
permissions:
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Run GoReleaser in snapshot mode
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: --snapshot --skip=publish --clean
Loading