Merge branch 'master' into alias_bug_fix

This commit is contained in:
Belén 2020-07-08 10:14:48 -07:00 committed by GitHub
commit f0670b3130
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 18 deletions

View file

@ -1,8 +0,0 @@
---
version: 1
update_configs:
- package_manager: 'ruby:bundler'
directory: '/'
update_schedule: 'daily'

8
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: bundler
directory: "/"
schedule:
interval: daily
time: "13:00"
open-pull-requests-limit: 10

View file

@ -1,8 +1,9 @@
cache: bundler
sudo: false
language: ruby
dist: xenial
os: linux
matrix:
jobs:
include:
- rvm: 2.4.9
env: "CHECK=rubocop"
@ -16,13 +17,5 @@ matrix:
- rvm: jruby-9.2.9.0
env: "CHECK=test"
- rvm: 2.4.9
env: "CHECK=rubocop"
install:
- gem update --system
- gem install bundler
- bundle --version
- bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
script:
- "bundle exec rake $CHECK"