diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 08607f4e..867fe43d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3'] + ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4'] steps: - uses: actions/checkout@v4 - name: Set up Ruby @@ -92,15 +92,33 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.3 + ruby-version: 3.4 - run: bundle update && bundle exec rake test:rails name: "rake test:rails RAILS=7.0.8" env: RAILS: 7.0.8 - run: bundle update && bundle exec rake test:rails - name: "rake test:rails RAILS=7.1.3" + name: "rake test:rails RAILS=7.1.5" env: - RAILS: 7.1.3 + RAILS: 7.1.5 + - run: bundle update && bundle exec rake test:rails + name: "rake test:rails RAILS=7.2.2" + env: + RAILS: 7.2.2 + rails-8: + runs-on: ubuntu-latest + strategy: + fail-fast: false + steps: + - uses: actions/checkout@v4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 3.4 + - run: bundle update && bundle exec rake test:rails + name: "rake test:rails RAILS=8.0.1" + env: + RAILS: 8.0.1 - run: bundle update && bundle exec rake test:rails name: "rake test:rails RAILS=main" env: