forked from piotrmurach/tty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (36 loc) · 836 Bytes
/
.travis.yml
File metadata and controls
36 lines (36 loc) · 836 Bytes
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
34
35
36
---
env:
global:
- CC_TEST_REPORTER_ID=76c3cb8a84b67e1e18aadacbe5a77861bc723dc1448f044bae995795b261569b
language: ruby
sudo: false
bundler_args: --without yard guard benchmarks
before_install: "gem install bundler -v '< 2.0'"
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script: "bundle exec rake ci"
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
- ruby-head
- jruby-9.2.6.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.2.6.0
fast_finish: true
branches:
only: master
notifications:
email: false