5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 23:56:57 +00:00
matterbridge/vendor/gomod.garykim.dev/nc-talk/.drone.yml
Gary Kim a0741d99b8
Add TLSConfig to nctalk (#1195)
Signed-off-by: Gary Kim <gary@garykim.dev>
2020-08-30 13:49:26 +02:00

25 lines
380 B
YAML

kind: pipeline
type: docker
name: test
steps:
- name: golangci-lint
image: golangci/golangci-lint:latest-alpine
commands:
- golangci-lint run
- name: test
image: golang:1.13
commands:
- go test ./...
- name: build-test
image: golang:1.13
commands:
- go build
trigger:
branch:
- master
event:
- pull_request
- push