From b5b3d636029b36bbc930ebca4ab630f66c7b30e6 Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Sun, 31 Dec 2023 13:07:39 -0600 Subject: [PATCH] Change the default tested ruby from 2.7 to 3.1 Ruby 2.7 is EOL and many gems such as SQLite don't install on it. Fixes #125 --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43af2c6..187a1b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,14 @@ jobs: strategy: matrix: ruby: - - 2.7 + - 3.1 rails_version: - - 5.2.8.1 - 6.0.5.1 - 6.1.6.1 - 7.0.3.1 + include: + - ruby: '2.7.8' # Rails 5.2 will not run on Ruby 3 + rails_version: '5.2.8.1' steps: - uses: actions/checkout@v2 - name: Set up Ruby