From e519fd6d6c565d0a5f547b2a05436f1ccfb55e70 Mon Sep 17 00:00:00 2001 From: Dan Schaper Date: Sun, 24 Dec 2017 19:13:31 -0800 Subject: [PATCH] Initial Circleci config test --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..7a6d4ef --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,13 @@ +versio: 2 +jobs: + build: + docker: + - image: debian:stretch + steps: + - checkout + - run: + name: Greeting + command: echo Hello, world. + - run: + name: Print the Current Time + command: date