diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2016-02-09 02:45:33 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2016-02-12 03:17:34 +0300 |
commit | 42c39c8922b0fb03c0bcc6c2101165412ed50e4c (patch) | |
tree | 1be3917d5e13fc4b73375a31d007e969c021634b /.travis.yml | |
parent | 9e191d43058d66fd52d1c33a244523600848bd25 (diff) |
Add Unit-Tests
Add unittests via shunit2 (https://github.com/kward/shunit2),
that integrate with travis-ci.org.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..818940cc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: php +sudo: false + +php: + - '7.0' + +script: + - test/powerlevel9k.spec + |