ci #1

Merged
catalin merged 1 commit from ci into main 2024-05-02 16:32:02 +00:00
Showing only changes of commit 9fd6116858 - Show all commits

ci: remove staticcheck install using go install in favor of alpine's
Some checks reported errors
continuous-integration/drone/pr Build was killed
continuous-integration/drone/push Build was killed
continuous-integration/drone Build is passing

cătălin 2022-06-28 15:27:16 +02:00
No known key found for this signature in database
GPG key ID: C378F1E869F05A95

View file

@ -9,8 +9,7 @@ steps:
- name: staticcheck
image: golang:1.18.3-alpine3.16
commands:
- apk add --no-cache git staticcheck gcc libc-dev
- go install honnef.co/go/tools/cmd/staticcheck@latest
- apk add --no-cache git~=2 staticcheck~=2022 gcc~=11 libc-dev~=0
- staticcheck
- name: build
image: plugins/docker