From db311d9a275a0d5fa15b2ec44f9746ffdbd8518a Mon Sep 17 00:00:00 2001 From: Simon Coffey Date: Mon, 19 Jun 2023 14:28:19 +0100 Subject: [PATCH] Add all remaining ruby 2.x versions to build matrix These builds now all pass for the time being, so since they were in the original .travis.yml I'm adding them here. To get ruby 2.2 working with the official setup-ruby action I've had to pin the runner on ubuntu-20.04 due to a known issue with setup-ruby, 2.2 and ubuntu-latest: https://github.com/ruby/setup-ruby/issues/496 --- .github/workflows/ci.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 367373a..1cbef43 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,11 +11,16 @@ permissions: jobs: rspec: name: RSpec (ruby ${{ matrix.ruby-version }}) - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: ruby-version: + - '2.0' + - '2.1' + - '2.2' + - '2.3' + - '2.4' - '2.5' - '2.6' - '2.7'