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
6 changes: 3 additions & 3 deletions .github/workflows/go-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ on:
description: "The GOPRIVATE environment variable"
required: false
type: string
default: github.com/containdk,github.com/neticdk
run-benchmarks:
description: "Run benchmarks"
required: false
Expand Down Expand Up @@ -63,12 +64,10 @@ jobs:
go mod verify

- name: golangci-lint
uses: golangci/golangci-lint-action@v7
uses: golangci/golangci-lint-action@v8
with:
version: v2.0
# args: --cache-dir .golangci-cache

# go test will compile the code, so we don't need to run go build
- name: Go Compile and Test
run: go test -cover -v ./...

Expand All @@ -77,6 +76,7 @@ jobs:
run: go test -bench=./... ./...

- name: Install GoReleaser
if: inputs.run-release-test
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
Expand Down