From 70f117482430ec15240fb9e09063322994967091 Mon Sep 17 00:00:00 2001 From: YutaGoto <12590762+YutaGoto@users.noreply.github.com> Date: Tue, 7 Jan 2025 22:32:06 +0900 Subject: [PATCH] :construction_worker: add ruby 3.4 check --- .circleci/config.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 74986ec..7336815 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -74,25 +74,30 @@ jobs: name: ruby/default tag: "3.3" steps: *spec_steps + ruby-34-spec: + executor: + name: ruby/default + tag: "3.4" + steps: *spec_steps cop: executor: name: ruby/default - tag: "3.3" + tag: "3.4" steps: *cop_steps spell-check: executor: name: python/default - tag: "3.12" + tag: "3.13" steps: *spell_check_steps yamllint: executor: name: python/default - tag: "3.12" + tag: "3.13" steps: *yamllint_steps slack: executor: name: ruby/default - tag: "3.2" + tag: "3.4" steps: *slack_steps workflows: @@ -107,6 +112,9 @@ workflows: - ruby-33-spec: context: - slack-secrets + - ruby-34-spec: + context: + - slack-secrets - cop: context: - slack-secrets