diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 84e6fe1..592fbaa 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -6,14 +6,10 @@ on: - v* branches: - main - paths: - - "**.go" pull_request: branches: - main - paths: - - "**.go" # Concurrency ensures that only a single workflow using the same concurrency group will run at a time. # When a workflow is queued in the same repository and concurrency group, any workflow in progress will be cancelled. diff --git a/Makefile b/Makefile index 0cfe39b..9c2c340 100644 --- a/Makefile +++ b/Makefile @@ -146,7 +146,7 @@ tmp/.linted.go.vet.sentinel: tmp/.tests-passed.sentinel tmp/.linted.golangci-lint.sentinel: .golangci.yaml hack/bin/golangci-lint tmp/.tests-passed.sentinel > mkdir -p $(@D) -> hack/bin/golangci-lint run --verbose +> hack/bin/golangci-lint run --verbose ./... > touch $@ gofmt: ## Runs 'gofmt -s' to format and simplify all Go code.