From 2cc6f5f65f9d8d7afb4271f9ac6c5a2eb466e6b5 Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Tue, 20 Aug 2024 22:31:20 +0200 Subject: [PATCH] Rename the job name from build to test and the workflow name from sample to rspec --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 276a07a8..bfba1c14 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ orbs: ruby: circleci/ruby@2.1.1 jobs: - build: + test: docker: - image: cimg/ruby:3.2.3 environment: @@ -34,6 +34,6 @@ jobs: command: bundle exec rspec workflows: - sample: + rspec: jobs: - - build + - test