From 54c29a2fc021f0bfd2f8ed2c4f7ad4035fa22c9c Mon Sep 17 00:00:00 2001 From: rhysd Date: Thu, 4 Jun 2015 12:31:01 +0900 Subject: [PATCH] add .travis.yml and Projectfile --- .travis.yml | 8 ++++++++ Projectfile | 1 + README.md | 2 ++ 3 files changed, 11 insertions(+) create mode 100644 .travis.yml create mode 100644 Projectfile diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..fa7a59b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: c +before_install: | + curl http://dist.crystal-lang.org/apt/setup.sh | sudo bash + sudo apt-get -q update +install: | + sudo apt-get install crystal +script: + - crystal build crisp.cr diff --git a/Projectfile b/Projectfile new file mode 100644 index 0000000..ac8416b --- /dev/null +++ b/Projectfile @@ -0,0 +1 @@ +# No dependency diff --git a/README.md b/README.md index d30165f..46bb228 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ Crisp ===== +[![Build Status](https://travis-ci.org/rhysd/Crisp.svg)](https://travis-ci.org/rhysd/Crisp) + Crisp is one of Lisp dialect which is based on [mal](https://github.com/kanaka/mal) and implemented with [Crystal](https://github.com/manastech/crystal). This project is a toy box for my dynamic language ideas.