forked from TheRenegadeCoder/sample-programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
33 lines (31 loc) · 793 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
matrix:
include:
- language: python
python:
- "3.7"
install:
- pip install -r requirements-test.txt
- python -um samplerunner download
script: python -um samplerunner test
deploy:
provider: script
script: bash -x deploy.sh
- language: ruby
before_install:
- cd docs/
rvm:
- 2.4
script:
- bundle exec jekyll build --future
- bundle exec htmlproofer ./_site --only-4xx --check-favicon --check-html --disable_external
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/f694e2f80d5bba482051
on_success: always
on_failure: always
on_start: never