From eecbea23a6f49709d10fb18a8fbb83f480948899 Mon Sep 17 00:00:00 2001 From: Brandon Fosdick Date: Thu, 21 Mar 2024 15:26:02 -0700 Subject: [PATCH] Added ruby v3.1 and v3.2 to the test matrix The Matrix class was moved to a bundled gem in 3.1 --- .github/workflows/ruby.yml | 2 +- Gemfile | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 7f73987..76e6fb1 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - ruby-version: ['2.7', '3.0'] + ruby-version: ['2.7', '3.0', '3.1', '3.2'] os: [ubuntu-latest] runs-on: ${{ matrix.os }} diff --git a/Gemfile b/Gemfile index 2028c84..e5c1de6 100644 --- a/Gemfile +++ b/Gemfile @@ -6,3 +6,5 @@ group :test do gem 'minitest' gem 'rake' end + +gem "matrix", "~> 0.4.2"