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
7 changes: 6 additions & 1 deletion .github/workflows/go-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Go Test
on:
workflow_call:
inputs:
go_version:
description: Go version passed to actions/setup-go (pin minor; avoid 'stable')
required: false
type: string
default: 1.26.x
golangci_lint_version:
description: golangci-lint version passed to golangci-lint-action
required: false
Expand All @@ -20,7 +25,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: stable
go-version: ${{ inputs.go_version }}
check-latest: true
- name: Go mod cache
id: go-cache
Expand Down