From ad1afbf2587eddc45422a4fc908626a42e7458d4 Mon Sep 17 00:00:00 2001 From: Bartosz Date: Fri, 12 Jun 2026 01:20:26 +0200 Subject: [PATCH] Modernize the CI test matrix Run the Specs workflow against Ruby 3.2, 3.3 and 3.4 via a build matrix instead of a single .ruby-version-pinned job. --- .github/workflows/specs.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/specs.yml b/.github/workflows/specs.yml index 9e4814b..d88ba15 100644 --- a/.github/workflows/specs.yml +++ b/.github/workflows/specs.yml @@ -9,14 +9,19 @@ jobs: specs: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + ruby-version: ['3.2', '3.3', '3.4'] + steps: - uses: actions/checkout@v5 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - # Reads the version from .ruby-version and installs the bundler - # pinned in Gemfile.lock (BUNDLED WITH). + # Installs the bundler pinned in Gemfile.lock (BUNDLED WITH). + ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - name: Set up the test database