From 6c1d0d42c53943eba2d535fda999013eba672c3e Mon Sep 17 00:00:00 2001 From: Tian Jin Date: Mon, 23 Dec 2019 16:33:08 -0500 Subject: [PATCH] enable ci --- .circleci/config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..d1d8dde --- /dev/null +++ b/.circleci/config.yml @@ -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