bitbucket-pipelines.yml in legion-exceptions-1.1.2 vs bitbucket-pipelines.yml in legion-exceptions-1.1.3

- old
+ new

@@ -2,16 +2,26 @@ pipelines: branches: master: - step: - name: Push to RubyGems - deployment: RubyGems + caches: + - bundler script: - - gem install bundler gem-release rake rspec + - gem install bundler rubocop + - gem update bundler rubocop - bundle install - - rake build - - mkdir .gem - - (umask 077 ; echo $gem_creds | base64 --decode > .gem/credentials) - - gem release - artifacts: - - pkg/** + - rubocop + - rspec + develop: + - step: + caches: + - bundler + script: + - gem install bundler rubocop + - gem update bundler rubocop + - bundle install + - rubocop + - rspec +definitions: + caches: + bundler: vendor/bundle \ No newline at end of file