Add Drone CI configuration. Expect pipeline to fail.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Stanislav Nikitin 2022-06-29 00:13:57 +05:00
parent 1aa242dd40
commit 8869dc8b75
Signed by: pztrn
GPG Key ID: 1E944A0F0568B550
1 changed files with 21 additions and 0 deletions

21
.drone.yml Normal file
View File

@ -0,0 +1,21 @@
---
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 ./...