Using Travis as CI.
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..4663534
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,20 @@
+os:
+    - linux
+
+env:
+    - SUITE=tests BUILD_TYPE=Debug
+    - SUITE=tests BUILD_TYPE=Release
+    - SUITE=examples BUILD_TYPE=Debug
+    - SUITE=examples BUILD_TYPE=Release
+
+language:
+    - cpp
+
+before_script:
+    - mkdir build && cd build
+
+script:
+    - cmake .. -DBUILD_TYPE=${BUILD_TYPE}
+    - make
+    - if [ "$SUITE" = "tests" ]; then ./test/re_test; fi
+    - if [ "$SUITE" = "examples"]; then ./test/benchmark_test; fi