From 4fa738021603a153ad21fc289be1f52cfc14892e Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Sun, 3 Dec 2023 13:39:36 -0700 Subject: [PATCH] Updated Circle CI step names Necessary to be consistent with link:https://alchemists.io/projects/rubysmith[Rubysmith]. Milestone: patch --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ac021a7..373760d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,24 +8,24 @@ jobs: - checkout - restore_cache: - name: Bundler Restore + name: Gems Restore keys: - gem-cache-{{.Branch}}-{{checksum "Gemfile"}} - gem-cache- - run: - name: Bundler Install + name: Gems Install command: | gem update --system bundle config set path "vendor/bundle" bundle install - save_cache: - name: Bundler Store + name: Gems Store key: gem-cache-{{.Branch}}-{{checksum "Gemfile"}} paths: - vendor/bundle - run: - name: Build + name: Rake command: bundle exec rake