diff --git a/.github/workflows/specs.yml b/.github/workflows/specs.yml index 16a8231b..5572411a 100644 --- a/.github/workflows/specs.yml +++ b/.github/workflows/specs.yml @@ -11,6 +11,9 @@ jobs: matrix: ruby: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2'] gemfile: ['Gemfile', 'gemfiles/aws_sdk_core_2.gemfile'] + include: + - ruby: '3.2' + gemfile: ['Gemfile', 'gemfiles/aws_sdk_core_ruby_3_2.gemfile'] runs-on: ubuntu-20.04 services: moto_sqs: diff --git a/gemfiles/aws_sdk_core_2.gemfile b/gemfiles/aws_sdk_core_2.gemfile index e0e8fe21..e0429167 100644 --- a/gemfiles/aws_sdk_core_2.gemfile +++ b/gemfiles/aws_sdk_core_2.gemfile @@ -14,8 +14,7 @@ end group :development do gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git" - gem "pry-byebug", ">= 3.10.1" - gem "pry", ">= 0.14.2" + gem "pry-byebug", "3.9.0" gem "rubocop" end diff --git a/gemfiles/aws_sdk_core_ruby_3_2.gemfile b/gemfiles/aws_sdk_core_ruby_3_2.gemfile new file mode 100644 index 00000000..e0e8fe21 --- /dev/null +++ b/gemfiles/aws_sdk_core_ruby_3_2.gemfile @@ -0,0 +1,22 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +group :test do + gem "activejob" + gem "aws-sdk-core", "~> 2" + gem "codeclimate-test-reporter", require: nil + gem "httparty" + gem "multi_xml" + gem "simplecov" + gem "webrick" +end + +group :development do + gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git" + gem "pry-byebug", ">= 3.10.1" + gem "pry", ">= 0.14.2" + gem "rubocop" +end + +gemspec path: "../"