diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-13 23:25:56 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-13 23:25:56 +0100 |
commit | f19272afad50bdbad34db6916b2836c315b2b0c8 (patch) | |
tree | 06d333003a1239799dee5aa4449707149039e0ec | |
parent | 2059fd91ca7792615e05c035afe12708f504691c (diff) | |
download | sbotools2-f19272afad50bdbad34db6916b2836c315b2b0c8.tar.xz |
Initial travis config
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | t/travis.sh | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..bfbae0a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,2 @@ +install: true +script: t/travis.sh diff --git a/t/travis.sh b/t/travis.sh new file mode 100644 index 0000000..a069b1a --- /dev/null +++ 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 |