mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-05 00:05:35 -04:00
36 lines
651 B
YAML
36 lines
651 B
YAML
language: ruby
|
|
cache: bundler
|
|
|
|
rvm:
|
|
- 2.3
|
|
- 2.4
|
|
- 2.5
|
|
- 2.6
|
|
- ruby-head
|
|
|
|
jobs:
|
|
include:
|
|
- stage: linting
|
|
rvm: ruby-2.4.1 # Pre-installed on TravisCI
|
|
install: true # Do not bundle install
|
|
script: gem install rubocop --no-document && rubocop
|
|
|
|
stages:
|
|
- linting
|
|
- test
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- 0.1x
|
|
|
|
deploy:
|
|
provider: rubygems
|
|
api_key:
|
|
secure: EqbOu9BQp5jkivJ8qvTo89f3J49KOByBueU3XulrJ2Kqm/ov4RDFsmp9/uHAnSLdmKSkzZaeq79t1AUNfKGX1ZqkKgq/Nw2BKGFnh5ZOjrkrRZR1Vm09OHxqiViEbtg+jZ8VOLY/iDFEkNIzuj9/H3iHGXC0XiKH2LTHOFH63Bs=
|
|
gem: faraday
|
|
on:
|
|
tags: true
|
|
repo: lostisland/faraday
|
|
rvm: 2.5
|