From e41adfb8033f90f6b27b0997c3bd042e48c14242 Mon Sep 17 00:00:00 2001 From: taakuuyaa <51745522+taakuuyaa@users.noreply.github.com> Date: Sun, 25 Feb 2024 21:53:57 +0900 Subject: [PATCH 1/2] update spec matrix --- .github/workflows/specs.yml | 7 +++++-- Appraisals | 6 ++++++ gemfiles/rails_7_1.gemfile | 21 +++++++++++++++++++++ 3 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 gemfiles/rails_7_1.gemfile diff --git a/.github/workflows/specs.yml b/.github/workflows/specs.yml index 16a8231b..3f6b1d04 100644 --- a/.github/workflows/specs.yml +++ b/.github/workflows/specs.yml @@ -9,7 +9,7 @@ jobs: name: All Specs strategy: matrix: - ruby: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2'] + ruby: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3'] gemfile: ['Gemfile', 'gemfiles/aws_sdk_core_2.gemfile'] runs-on: ubuntu-20.04 services: @@ -34,7 +34,7 @@ jobs: name: Rails Specs strategy: matrix: - rails: ['4.2', '5.2', '6.0', '6.1', '7.0'] + rails: ['4.2', '5.2', '6.0', '6.1', '7.0', '7.1'] include: - rails: '4.2' ruby: '2.2' @@ -51,6 +51,9 @@ jobs: - rails: '7.0' ruby: '3.1' gemfile: gemfiles/rails_7_0.gemfile + - rails: '7.1' + ruby: '3.2' + gemfile: gemfiles/rails_7_1.gemfile runs-on: ubuntu-20.04 env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} diff --git a/Appraisals b/Appraisals index 2736f523..8364554e 100644 --- a/Appraisals +++ b/Appraisals @@ -40,3 +40,9 @@ appraise 'rails_7_0' do gem 'activejob', '~> 7.0' end end + +appraise 'rails_7_1' do + group :test do + gem 'activejob', '~> 7.1' + end +end diff --git a/gemfiles/rails_7_1.gemfile b/gemfiles/rails_7_1.gemfile new file mode 100644 index 00000000..24d7a813 --- /dev/null +++ b/gemfiles/rails_7_1.gemfile @@ -0,0 +1,21 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +group :test do + gem "activejob", "~> 7.1" + gem "aws-sdk-core", "~> 3" + gem "aws-sdk-sqs" + gem "codeclimate-test-reporter", require: nil + gem "httparty" + gem "multi_xml" + gem "simplecov" +end + +group :development do + gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git" + gem "pry-byebug" + gem "rubocop" +end + +gemspec path: "../" From a6b212d3d399e7b402f8fed3dfd90b66441241f6 Mon Sep 17 00:00:00 2001 From: taakuuyaa <51745522+taakuuyaa@users.noreply.github.com> Date: Sun, 25 Feb 2024 22:49:37 +0900 Subject: [PATCH 2/2] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22caaa21..e719062d 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ For more information check the [wiki page](https://github.com/phstc/shoryuken/wi ### Testing -To run all unit specs against the latest dependency vesions, execute +To run all unit specs against the latest dependency versions, execute ```sh bundle exec rake spec