Skip to content
Open
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
8 changes: 4 additions & 4 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pool:
steps:
- name: staticcheck
pull: always
image: golang:1.19
image: golang:1.25
environment:
GO111MODULE: "on" # Explicitly enable Go modules
commands:
Expand All @@ -25,7 +25,7 @@ steps:

- name: lint
pull: always
image: golang:1.19
image: golang:1.25
commands:
- go get golang.org/x/lint/golint
- go run golang.org/x/lint/golint -set_exit_status ./...
Expand All @@ -35,7 +35,7 @@ steps:

- name: vet
pull: always
image: golang:1.19
image: golang:1.25
commands:
- go vet ./...
volumes:
Expand All @@ -44,7 +44,7 @@ steps:

- name: test
pull: always
image: golang:1.19
image: golang:1.25
commands:
- go test -cover -v ./...
volumes:
Expand Down