diff options
author | Andinus <andinus@nand.sh> | 2020-04-06 12:36:14 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-04-06 12:36:14 +0530 |
commit | 09e64a527745d86a36aa45fb5ccc1f27ac25f04d (patch) | |
tree | bc50c42fc00a634d27eb8bedf023385417c10998 /build | |
download | lynx-09e64a527745d86a36aa45fb5ccc1f27ac25f04d.tar.gz |
Initial Commit v0.1.0
Diffstat (limited to 'build')
-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 ./... |