From ee644c4c4b1c8d4108f2782806d7f7fe1ba84c8f Mon Sep 17 00:00:00 2001 From: Mathieu Jobin Date: Mon, 24 Jan 2022 18:04:50 +0900 Subject: [PATCH] run tests agains rails 7.0 --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e90b688b..18ec7b99 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -56,7 +56,7 @@ jobs: # have set this up with each database as a separate job, but then we'd be # duplicating the matrix configuration three times. matrix: - gemfile: [ 'rails_5.2', 'rails_6.0', 'rails_6.1' ] + gemfile: [ 'rails_5.2', 'rails_6.0', 'rails_6.1', 'rails_7.0' ] # To keep matrix size down, only test highest and lowest rubies. # Ruby 3.0 is an exception. For now, let's continue to test against 2.7 @@ -72,6 +72,9 @@ jobs: gemfile: 'rails_5.2' - ruby: '3.1' gemfile: 'rails_5.2' + # rails 7 requires ruby > 2.7 + - ruby: '2.6' + gemfile: 'rails_7.0' steps: - name: Checkout source uses: actions/checkout@v2