fixup! WIP: Go 1.18
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Rob Watson 2022-01-04 08:26:24 +01:00
parent 498fb1fe4d
commit 396a00bb0c
1 changed files with 2 additions and 4 deletions

View File

@ -8,10 +8,9 @@ steps:
image: golang:1.17
commands:
- cd backend/
- go install honnef.co/go/tools/cmd/staticcheck@latest
- go build ./...
- go vet ./...
- staticcheck ./...
- go run honnef.co/go/tools/cmd/staticcheck@latest ./...
- go test -bench=. -benchmem -cover ./...
# staticcheck does not yet support Go 1.18.
@ -20,10 +19,9 @@ steps:
image: golang:1.18beta1
commands:
- cd backend/
# - go install honnef.co/go/tools/cmd/staticcheck@latest
- go build ./...
- go vet ./...
# - staticcheck ./...
# - go run honnef.co/go/tools/cmd/staticcheck@latest ./...
- go test -bench=. -benchmem -cover ./...
- name: frontend