Add Drone configuration.

This commit is contained in:
Stanislav Nikitin 2021-11-21 14:12:09 +05:00
parent e2a928fac4
commit 16be332d38
Signed by: pztrn
GPG Key ID: 1E944A0F0568B550
2 changed files with 32 additions and 0 deletions

31
.drone.yml Normal file
View File

@ -0,0 +1,31 @@
---
kind: pipeline
type: docker
name: build
steps:
- name: lint
image: golangci/golangci-lint:v1.43.0
environment:
CGO_ENABLED: 0
commands:
- golangci-lint run
- name: test
image: golang:1.17.3-alpine
environment:
CGO_ENABLED: 0
commands:
- go test ./...
- name: docker
image: plugins/docker
when:
branch: ["master"]
settings:
username:
from_secret: dockerhub_user
password:
from_secret: dockerhub_password
repo: pztrn/metricator
auto_tag: true

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
.vscode
metricator.yaml
.idea
*DS_Store*