We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0346c0d commit a0f0c64Copy full SHA for a0f0c64
.travis.yml
@@ -0,0 +1,28 @@
1
+language: ruby
2
+rvm:
3
+ - "2.2.2"
4
+
5
+## Allows use of docker-based containers, which are more available than
6
+## the xen-based (or whatever) VMs, so builds tend to happen sooner
7
+sudo: false
8
9
+## Save bundler deps. Requires sudo: false
10
+cache: bundler
11
12
+## Disable external link checking to prevent spurious failures because
13
+## of other people's downtime. This can also avoid wasting their
14
+## bandwidth.
15
16
+## Build all possible jekyll pages for use with link checking.
17
+script:
18
+ - make all
19
20
+env:
21
+ global:
22
+ - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
23
24
+# Whitelist all branches
25
+branches:
26
+ only:
27
+ - master
28
+ - /.*/
0 commit comments