diff --git a/.drone.yml b/.drone.yml index b1bdc4a..1c5102d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,7 +1,10 @@ -# .woodpecker.yml -pipeline: - test: - image: golang - commands: - - go mod tidy - - make test +kind: pipeline +type: docker +name: testing + +steps: +- name: test + image: golang + commands: + - go mod tidy + - make test