diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..5330d04 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +workspace: + base: /go + path: src/cwtch.im/cwtch + +pipeline: + build: + image: golang + commands: + - go list ./... | xargs go get + - go get -u github.com/golang/lint/golint + - go list ./... | xargs go vet + - go list ./... | xargs golint -set_exit_status + - sh testing/tests.sh \ No newline at end of file diff --git a/.gitignore b/.gitignore index 54fedbb..e95809b 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,3 @@ *.test */*test_* */*_test* -.*