From 211c736313ab9cb27c90cd74df4c67e69d4a47d9 Mon Sep 17 00:00:00 2001 From: Ruthenic Date: Sat, 17 Sep 2022 14:55:44 -0400 Subject: [PATCH] init --- .woodpecker.yml | 5 +++++ test.sh | 1 + 2 files changed, 6 insertions(+) create mode 100644 .woodpecker.yml create mode 100644 test.sh diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..65acf2c --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,5 @@ +pipeline: + test: + image: alpine:3.14 + commands: + - sh test.sh diff --git a/test.sh b/test.sh new file mode 100644 index 0000000..496af8d --- /dev/null +++ b/test.sh @@ -0,0 +1 @@ +echo "Hello, world!"