hosts-translator/.drone.yml
Stanislav N. aka pztrn 8869dc8b75
Some checks failed
continuous-integration/drone/push Build is failing
Add Drone CI configuration. Expect pipeline to fail.
2022-06-29 00:13:57 +05:00

22 lines
433 B
YAML

---
kind: pipeline
type: docker
name: lint and test
steps:
- name: lint
image: code.pztrn.name/containers/mirror/golangci/golangci-lint:v1.46.2
pull: if-not-exists
environment:
CGO_ENABLED: 0
commands:
- golangci-lint run
- name: test
image: code.pztrn.name/containers/mirror/golang:1.18.3-alpine
pull: if-not-exists
environment:
CGO_ENABLED: 0
commands:
- go test ./...