From 79d530ba8abffe85ad1cda0fd1df33c57cd54c69 Mon Sep 17 00:00:00 2001 From: Drew Bednar Date: Sat, 22 Feb 2025 14:33:37 -0500 Subject: [PATCH] Try without verbose --- .drone.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yaml diff --git a/.drone.yaml b/.drone.yaml new file mode 100644 index 0000000..6d03863 --- /dev/null +++ b/.drone.yaml @@ -0,0 +1,14 @@ +kind: pipeline +type: docker +name: CI Test Pipeline + +steps: +- name: Unit Tests + image: golang:1.23 + commands: + - go test ./... + +trigger: + event: + - pull_request + - push