bitbucket-pipelines.yml in log_toolbox-1.3.9 vs bitbucket-pipelines.yml in log_toolbox-1.3.10
- old
+ new
@@ -1,16 +1,15 @@
-image: ruby:2.6.3
+image: ruby:2.5.8
pipelines:
default:
- step:
script:
- - git archive --remote=git@bitbucket.org:guideinvestimentos/rails_defaults.git HEAD .rubocop.yml | tar -x
- - gem update bundler
+ - wget -O .rubocop.yml $RUBOCOP_CONFIG_URL
+ - gem install bundler -v $(cat Gemfile.lock | awk '/BUNDLED WITH/{ getline;print; }')
- bundle install
- - gem install rubocop
- - bundle exec rspec -fdoc
- - rubocop .
+ - rspec .
+ - rubocop -p .
branches:
master:
- step:
script: