Skip to content

Commit

Permalink
Merge pull request #15 from ifad/chore/test-legacy-rubies-on-ubuntu-2…
Browse files Browse the repository at this point in the history
…0.04

Test legacy rubies on Ubuntu 20.04
  • Loading branch information
tagliala authored Jan 13, 2024
2 parents 7397e4e + b3c27cd commit c6d4865
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,37 @@ permissions:
jobs:
test:
name: Specs
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruby-version: ['1.9.3', '2.0', '2.1', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
ruby-version: ['2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
channel: ['stable']
os: ['ubuntu-latest']

include:
- ruby-version: 'head'
channel: 'experimental'
os: 'ubuntu-latest'

- ruby-version: '1.9.3'
channel: 'stable'
os: 'ubuntu-20.04'

- ruby-version: '2.0'
channel: 'stable'
os: ubuntu-20.04

- ruby-version: '2.1'
channel: 'stable'
os: 'ubuntu-20.04'

- ruby-version: '2.2'
channel: 'stable'
os: 'ubuntu-20.04'

- ruby-version: '2.3'
channel: 'stable'
os: 'ubuntu-20.04'

continue-on-error: ${{ matrix.channel != 'stable' }}

Expand Down

0 comments on commit c6d4865

Please sign in to comment.