update goreleaser config for v2 module #356
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.23.0 | |
- uses: actions/checkout@v3 | |
- name: Cache Go modules | |
uses: actions/cache@preview | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-build-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.OS }}-build-${{ env.cache-name }}- | |
${{ runner.OS }}-build- | |
${{ runner.OS }}- | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
args: --timeout=5m | |
version: latest | |
# Ref https://github.com/golangci/golangci-lint-action/issues/244 | |
skip-pkg-cache: true | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
env: | |
GOPATH: ${{ github.workspace }}/go | |
defaults: | |
run: | |
working-directory: ${{ env.GOPATH }}/src/github.com/deb-sig/double-entry-generator | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
path: ${{ env.GOPATH }}/src/github.com/deb-sig/double-entry-generator | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.23.0 | |
- name: Check Go modules | |
run: | | |
go mod tidy && git add go.* | |
git diff --cached --exit-code || (echo 'Please run "go mod tidy" to sync Go modules' && exit 1); | |
- name: Install Ginkgo | |
run: | | |
# Use version from go.mod, not @latest | |
go install github.com/onsi/ginkgo/v2/ginkgo | |
- name: Verify gofmt | |
run: | | |
make check-format && make format && git add pkg | |
git diff --cached --exit-code || (echo 'Please run "make format" to verify gofmt & goimports' && exit 1); | |
- name: Run Integration test | |
run: make test | |
- name: Run Unit test | |
run: ginkgo ./... |