Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Stratton <matt.stratton@gmail.com>2019-11-16 16:01:41 +0300
committerGitHub <noreply@github.com>2019-11-16 16:01:41 +0300
commit58addea114fca686b77e09320459794b1134acb8 (patch)
treee8c67cac59658a66eafcac94c124e5e8991ad1ad
parent43854d0ccc4eb9a7d6ede86b8af495976e598905 (diff)
Add skeleton circleci config (#230)
-rw-r--r--.circleci/config.yml16
-rw-r--r--utils/README.md0
2 files changed, 16 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..581bbf2
--- /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 \ No newline at end of file
diff --git a/utils/README.md b/utils/README.md
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/utils/README.md