aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..71aff690
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,27 @@
+sudo: true
+dist: trusty
+language: sh
+addons:
+ apt:
+ packages:
+ - build-essential
+
+before_script:
+ # Show the git version being used to test.
+ - "git --version"
+ # Show the zsh version being used to test.
+ - "zsh --version"
+
+install:
+ - "sudo apt-get update -qq"
+ - "sudo apt-get install zsh"
+ - "sudo chsh -s $(which zsh)"
+
+script:
+ - test/powerlevel9k.spec
+ - test/functions/utilities.spec
+ - test/functions/colors.spec
+ - test/segments/dir.spec
+ - test/segments/rust_version.spec
+ - test/segments/go_version.spec
+