image: ruby:2.5 stages: - lint - test cache: paths: - vendor/ruby rubocop: stage: lint before_script: - gem install rubocop -v 0.60.0 script: - rubocop except: - schedules bundler-audit: stage: lint before_script: - bundle install --path vendor - gem install bundler-audit script: - bundle audit rspec: stage: test before_script: - bundle install --path vendor script: - bundle exec rspec except: - schedules