add drone

This commit is contained in:
Владимир Фёдоров 2023-08-14 00:34:58 +07:00
parent fd88563096
commit 0888fcd840
1 changed files with 18 additions and 0 deletions

18
build/ci/.drone.yml Normal file
View File

@ -0,0 +1,18 @@
kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang
commands:
- go build -o butler cmd/butler/main.go
- name: test
image: golang
commands:
- go test ./...
trigger:
event:
- push