From c658715d28a9ac5e995245620cce2fba116690b9 Mon Sep 17 00:00:00 2001 From: Florian Schwab Date: Wed, 19 Jun 2019 11:27:48 +0200 Subject: [PATCH] update ci --- .gitlab-ci.yml | 8 ++++---- .rubocop.yml | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7946786..722fbdc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,9 +5,9 @@ stages: build: stage: build - image: ruby:2.5 + image: ruby:2.6 script: - - gem install bundler --no-ri --no-rdoc + - gem install bundler --no-document - bundle update artifacts: paths: @@ -15,9 +15,9 @@ build: rubocop: stage: codequality - image: ruby:2.5 + image: ruby:2.6 script: - - gem install rubocop --no-ri --no-rdoc + - gem install rubocop rubocop-performance --no-document - rubocop dependency_scanning: diff --git a/.rubocop.yml b/.rubocop.yml index 87bd208..362d885 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,3 +1,6 @@ +require: + - rubocop-performance + AllCops: TargetRubyVersion: 2.3