From 2aaed8db4578889023cc42700f87ea47b00dd134 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibaut=20Barr=C3=A8re?= Date: Tue, 27 Dec 2022 11:24:09 +0100 Subject: [PATCH] Add Ruby 3.2 to CI (#39) * Add Ruby 3.2 to CI * Temporary fix for https://github.com/rubocop/rubocop/issues/10675 is fixed --- .github/workflows/ci.yml | 1 + kiba-common.gemspec | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49b79fe..6b64ee0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,7 @@ jobs: - '2.7' - '3.0' - '3.1' + - '3.2' - head - jruby - jruby-head diff --git a/kiba-common.gemspec b/kiba-common.gemspec index b21c8ce..5b78b76 100644 --- a/kiba-common.gemspec +++ b/kiba-common.gemspec @@ -7,7 +7,9 @@ Gem::Specification.new do |gem| gem.homepage = "https://github.com/thbar/kiba-common" gem.license = "LGPL-3.0" gem.files = `git ls-files | grep -Ev '^(examples)'`.split("\n") - gem.test_files = `git ls-files -- test/*`.split("\n") + # NOTE: temporarily disabled until + # https://github.com/rubocop/rubocop/issues/10675 is fixed + # gem.test_files = `git ls-files -- test/*`.split("\n") gem.name = "kiba-common" gem.require_paths = ["lib"] gem.version = Kiba::Common::VERSION