diff options
Diffstat (limited to 'vendor/gomod.garykim.dev/nc-talk/.drone.yml')
-rw-r--r-- | vendor/gomod.garykim.dev/nc-talk/.drone.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/gomod.garykim.dev/nc-talk/.drone.yml b/vendor/gomod.garykim.dev/nc-talk/.drone.yml new file mode 100644 index 00000000..c57fa083 --- /dev/null +++ b/vendor/gomod.garykim.dev/nc-talk/.drone.yml @@ -0,0 +1,20 @@ +kind: pipeline +type: docker +name: test + +steps: + - name: golangci-lint + image: golangci/golangci-lint:latest-alpine + commands: + - golangci-lint run + - name: build-test + image: golang:1.13 + commands: + - go build + +trigger: + branch: + - master + event: + - pull_request + - push |