From c80026d95583401a78c07428e58e50b0cf0d933b Mon Sep 17 00:00:00 2001 From: Antonis Berkakis Date: Tue, 2 Jan 2024 12:19:00 +0000 Subject: [PATCH] Update CI to run to include Ruby 3.3 - Exclude Rubies >=3.1 from latest main Gemfile as it runs on 7.2 --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f0e846814..1092fc61b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,7 @@ jobs: - gemfiles/Gemfile-rails-6-1 - gemfiles/Gemfile-rails-6-0 ruby: + - '3.3' - '3.2' - '3.1' - '3.0' @@ -20,6 +21,10 @@ jobs: - DEVISE_ORM=active_record - DEVISE_ORM=mongoid exclude: + - gemfile: gemfiles/Gemfile-rails-main + ruby: '2.7' # Rails > 7.1 supports Ruby >= 3.1 + - gemfile: gemfiles/Gemfile-rails-main + ruby: '3.0' # Rails > 7.1 supports Ruby >= 3.1 - gemfile: Gemfile env: DEVISE_ORM=mongoid - gemfile: gemfiles/Gemfile-rails-main