diff --git a/.drone.yaml b/.drone.yaml new file mode 100644 index 0000000..8218f13 --- /dev/null +++ b/.drone.yaml @@ -0,0 +1,18 @@ +kind: pipeline +type: docker +name: CI Test Pipeline + +steps: +- name: Unit Tests + image: golang:1.23 + commands: + - go test -v ./... + +trigger: + event: + - pull_request + - push + +# Secrets used to pull private images +image_pull_secrets: + - dockerconfigjson