glox/.drone.yml
Fabian Becker 4076341fed
Some checks failed
continuous-integration/drone/push Build is failing
Add CI integration with drone
2022-01-12 10:54:34 +01:00

34 lines
518 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: lint
image: golang:latest
volumes:
- name: deps
path: /go
commands:
- go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
- golangci-lint run
- name: test
image: golang
volumes:
- name: deps
path: /go
commands:
- go test
- name: build
image: golang
volumes:
- name: deps
path: /go
commands:
- go build
volumes:
- name: deps
temp: {}