forked from biopython/biopython.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
15 lines (14 loc) · 670 Bytes
/
.travis.yml
File metadata and controls
15 lines (14 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Ask TravisCI to build the site for testing purposes,
# results at https://travis-ci.org/biopython/biopython.github.io/builds
# See https://help.github.com/articles/troubleshooting-github-pages-build-failures/
#
# We ask TravisCI to use the same version of Ruby as used on GitHub Pages,
# see https://docs.travis-ci.com/user/languages/ruby/ and
# https://pages.github.com/versions/ and our Gemfile.
sudo: false
language: ruby
rvm: 2.4.4
script:
- "if grep '\t' wiki/*.md; then echo 'Tabs are bad, please use four spaces.'; false; fi"
- "if grep -n -r '[[:blank:]]$' wiki/*.md; then echo 'Please remove trailing whitespace.'; false; fi"
- "bundle exec jekyll build"