2
0

add drone and go version

This commit is contained in:
Lucas Löffel
2020-02-13 14:17:42 +01:00
parent d84791c16d
commit 4f4471bc5d
3 changed files with 13 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
kind: pipeline
type: docker
name: docker
steps:
- name: linter
image: golangci/golangci-lint
commands:
- make install
- make linter
+2
View File
@@ -1,5 +1,7 @@
module github.com/recws-org/recws
go 1.13
require (
github.com/gorilla/websocket v1.4.1
github.com/jpillora/backoff v0.0.0-20180909062703-3050d21c67d7
+1 -1
View File
@@ -1,5 +1,5 @@
install:
go get -t -v -u ./...
go get
linter:
golangci-lint run