From a292c6adcde80988fc1a1b893fe49b1d50e3e5d1 Mon Sep 17 00:00:00 2001 From: Simon Coffey Date: Wed, 14 Jun 2023 17:26:31 +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 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b7f11bb..d66d078 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,11 +10,17 @@ permissions: jobs: RSpec: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: ruby-version: + - '1.9.3' + - '2.0' + - '2.1' + - '2.2' + - '2.3' + - '2.4' - '2.5' - '2.6' - '2.7'