add travis config
Graham Knop [Sun, 1 Jun 2014 04:44:43 +0000 (00:44 -0400)]
.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..b26039b
--- /dev/null
@@ -0,0 +1,33 @@
+language: perl
+perl:
+  - "5.8"
+  - "5.10"
+  - "5.12"
+  - "5.14"
+  - "5.16"
+  - "5.18"
+  - "5.20"
+  - "dev"
+matrix:
+  include:
+    - perl: 5.8.1
+      env: AUTHOR_TESTING=0
+    - perl: 5.18
+      env: COVERAGE=1
+sudo: false
+before_install:
+  - eval $(curl https://travis-perl.github.io/init) --auto
+branches:
+  except:
+    - /^wip\//
+    - /^blocked/
+notifications:
+  email: false
+  irc:
+    channels:
+      - "irc.perl.org#moo-smoke"
+    template:
+      - "%{branch}#%{build_number} by %{author}: %{message} (%{build_url})"
+    on_success: change
+    on_failure: always
+    skip_join: true