diff options
author | Andinus <andinus@nand.sh> | 2020-04-15 20:28:29 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-04-15 20:28:29 +0530 |
commit | 11e2e11928caa4129bc43b051271f8bccefa56e4 (patch) | |
tree | 8ec59e300c9091cce8de5fd0ea65eb0b3e659c95 | |
parent | 26f5e1863fff58c465507326f3a3255088bd72d7 (diff) | |
download | lynx-11e2e11928caa4129bc43b051271f8bccefa56e4.tar.gz |
Add drone ci config
-rw-r--r-- | build/ci/drone.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/build/ci/drone.yml b/build/ci/drone.yml new file mode 100644 index 0000000..32e778e --- /dev/null +++ b/build/ci/drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +name: testing + +steps: +- name: vet + image: golang:1.13 + commands: + - go vet ./... + +- name: test + image: golang:1.13 + commands: + - go test -v ./... |