From c5274cdcba79a2be0dfbf7b757bd73f12e2688e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luis=20Leal=20Cardoso=20Junior?= Date: Mon, 27 Dec 2021 11:19:45 -0300 Subject: Add Ruby 3.1 to CI --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c722ac1c..464644eb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,6 +19,7 @@ jobs: # Due to https://github.com/actions/runner/issues/849, # we have to use quotes for '3.0' - '3.0' + - 3.1 - head - jruby - jruby-head -- cgit v1.2.1 From d1aee5999404ac4b24c34e7e94530bc1ad910b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luis=20Leal=20Cardoso=20Junior?= Date: Mon, 27 Dec 2021 12:06:50 -0300 Subject: Prevents Ruby 3.1 incompatibility error. You can enable this cop when Ruby 2.4 support is dropped. --- .rubocop.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 7e302463..c86553e5 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,5 +1,10 @@ inherit_from: .rubocop_todo.yml +# Prevents Ruby 3.1 incompatibility error. You can enable this cop when Ruby 2.4 support is dropped. +# See https://github.com/rubocop/rubocop/issues/10258 +Layout/BlockAlignment: + Enabled: false + Style/NumericPredicate: Enabled: false -- cgit v1.2.1 From c67a4272a5cd0fc6ea6ebd36c1e315bb5159caa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luis=20Leal=20Cardoso=20Junior?= Date: Mon, 27 Dec 2021 13:24:15 -0300 Subject: Skip head tests for now, because of an incompatibility with Ruby 3.2.0-dev --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 464644eb..d67d4065 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: # we have to use quotes for '3.0' - '3.0' - 3.1 - - head + # - head is currently broken due to yard support for 3.2.0-dev - jruby - jruby-head -- cgit v1.2.1 From f7afcd90d1837d471c263d5af457f6098714e427 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Luis=20Leal=20Cardoso=20Junior?= Date: Mon, 27 Dec 2021 13:41:16 -0300 Subject: jruby-head is failing a few specs --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d67d4065..4ef34eb3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: - 3.1 # - head is currently broken due to yard support for 3.2.0-dev - jruby - - jruby-head + # - jruby-head runs-on: ${{ matrix.os }} -- cgit v1.2.1