From b0b85f375bfb908433db9236483517cb999442b7 Mon Sep 17 00:00:00 2001 From: schneems Date: Wed, 18 May 2022 10:55:16 -0700 Subject: [PATCH] Add Ruby 3.2 to the test matrix --- .circleci/config.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f296eb2..a2965dd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -51,7 +51,18 @@ jobs: steps: - checkout - ruby/install: - version: '3.1.0-preview1' + version: '3.1.2' + - run: ruby -v + - ruby/install-deps + - <<: *unit + + "ruby-3-2": + docker: + - image: 'cimg/base:stable' + steps: + - checkout + - ruby/install: + version: '3.2.0-preview1' - run: ruby -v - ruby/install-deps - <<: *unit @@ -73,4 +84,5 @@ workflows: - "ruby-2-7" - "ruby-3-0" - "ruby-3-1" + - "ruby-3-2" - "lint"