diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 502e88b..4dc2f8a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,17 +12,18 @@ jobs: strategy: matrix: ruby: - - 2.5 - - 2.6 - - 2.7 + - 3.2 + # - 2.6 + # - 2.7 gemfile: - railsmaster - - rails6 - - rails50 - - rails51 + - rails8 + - rails7 + # - rails50 + # - rails51 # - rails5001 - - rspec4rails5 - - rspec4rails6 + # - rspec4rails5 + # - rspec4rails6 name: Ruby ${{ matrix.ruby }} ${{ matrix.gemfile }} steps: - uses: actions/checkout@v2 diff --git a/gemfiles/rails7.gemfile b/gemfiles/rails7.gemfile new file mode 100644 index 0000000..063a208 --- /dev/null +++ b/gemfiles/rails7.gemfile @@ -0,0 +1,5 @@ +source 'https://rubygems.org' + +gem "rails", "~> 7.0.0" + +gemspec path: '..' diff --git a/gemfiles/rails8.gemfile b/gemfiles/rails8.gemfile new file mode 100644 index 0000000..fea7538 --- /dev/null +++ b/gemfiles/rails8.gemfile @@ -0,0 +1,5 @@ +source 'https://rubygems.org' + +gem "rails", "~> 8.0.0" + +gemspec path: '..'