From e990b0fa7678f0944fac0ef19ca85f92d6d2c0c4 Mon Sep 17 00:00:00 2001 From: Drew Bednar Date: Sat, 22 Feb 2025 14:19:22 -0500 Subject: [PATCH] Add drone file --- .drone.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .drone.yaml 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