commit f19272afad50bdbad34db6916b2836c315b2b0c8 parent 2059fd91ca7792615e05c035afe12708f504691c Author: Andreas Guldstrand <andreas.guldstrand@gmail.com> Date: Sun, 13 Dec 2015 23:25:56 +0100 Initial travis config Diffstat:
| A | .travis.yml | | | 2 | ++ |
| A | t/travis.sh | | | 6 | ++++++ |
2 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/.travis.yml b/.travis.yml @@ -0,0 +1,2 @@ +install: true +script: t/travis.sh diff --git a/t/travis.sh b/t/travis.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +# Set up tests to run under Travis + +echo "Not actually testing anything. Just verifying travis runs this." +exit 0