mirror of
https://github.com/thoughtbot/factory_bot_rails.git
synced 2022-11-09 11:49:18 -05:00
75d1f68d12
Ruby 2.1 and 2.2 are no longer maintained, and Rails 3.2 and 4.2 are no longer maintained, so I don't want to go out of our way to continue supporting them in FactoryBot 5+. Hooray for faster test runs!
27 lines
463 B
YAML
27 lines
463 B
YAML
language: ruby
|
|
env:
|
|
- ARUBA_TIMEOUT=240
|
|
before_install:
|
|
- gem update --system
|
|
- gem update bundler
|
|
- gem cleanup bundler
|
|
cache: bundler
|
|
rvm:
|
|
- 2.3
|
|
- 2.4
|
|
- 2.5
|
|
- ruby-head
|
|
branches:
|
|
only:
|
|
- master
|
|
install:
|
|
- "bundle install --retry 3 --jobs 8"
|
|
gemfile:
|
|
- gemfiles/rails4.2.gemfile
|
|
- gemfiles/rails5.0.gemfile
|
|
- gemfiles/rails5.1.gemfile
|
|
- gemfiles/rails5.2.gemfile
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- rvm: ruby-head
|