From ced0ba1a7d19a1ebb1741fd0df3907509c68a597 Mon Sep 17 00:00:00 2001 From: Alex Collins Date: Tue, 29 Oct 2019 18:45:10 -0700 Subject: [PATCH] circle --- .circleci/config.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .circleci/config.yaml diff --git a/.circleci/config.yaml b/.circleci/config.yaml new file mode 100644 index 00000000..d1d8ddec --- /dev/null +++ b/.circleci/config.yaml @@ -0,0 +1,16 @@ +version: 2 +jobs: + build: + docker: + - image: debian:stretch + + steps: + - checkout + + - run: + name: Greeting + command: echo Hello, world. + + - run: + name: Print the Current Time + command: date