diff --git a/.github/workflows/push_pr.yml b/.github/workflows/push_pr.yml index 0fe4d64b..d0daa981 100644 --- a/.github/workflows/push_pr.yml +++ b/.github/workflows/push_pr.yml @@ -11,6 +11,13 @@ on: - README.md - 'docs/**' - 'examples/**' + pull_request: + branches: + - '**' # This will trigger on PRs to ANY branch + paths-ignore: + - README.md + - 'docs/**' + - 'examples/**' env: REPO_FULL_NAME: ${{ github.event.repository.full_name }} diff --git a/Makefile b/Makefile index 2f52566d..c511b71c 100644 --- a/Makefile +++ b/Makefile @@ -6,12 +6,12 @@ SRCDIR ?= . BUILD_DIR ?= $(CURDIR)/bin COVERAGE_FILE ?= coverage.out -GO_VERSION ?= 1.24 +GO_VERSION ?= 1.25 GO_CMD ?= go GODOC ?= godocdown GOLINTER = golangci-lint -GOLINTER_VERSION = v1.24.0 +GOLINTER_VERSION = v1.62.0 # Determine packages by looking into pkg/* ifneq ("$(wildcard ${SRCDIR}/pkg/*)","")