Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ run:
timeout: 5m

output:
format: github-actions
formats:
- format: colored-line-number

linters:
disable-all: true
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ tidy:
test:
go test -v ./...

GOLANGCI_LINT_VERSION ?= v1.56.1
GOLANGCI_LINT_VERSION ?= v1.60.1
lint:
if ! command -v golangci-lint &> /dev/null; then \
echo "Could not find golangci-lint, installing version $(GOLANGCI_LINT_VERSION)."; \
Expand Down
2 changes: 1 addition & 1 deletion run.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ func (r *Run) request(ctx context.Context, payload any) (err error) {
r.callsLock.Unlock()
} else if event.Run.Type == EventTypeRunFinish && event.Run.Error != "" {
r.state = Error
r.err = fmt.Errorf(event.Run.Error)
r.err = fmt.Errorf("%s", event.Run.Error)
}
}

Expand Down