Skip to content

Disable test workflow for Ruby-2.2 #15

Disable test workflow for Ruby-2.2

Disable test workflow for Ruby-2.2 #15

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby:
- '1.9'
- '2.0'
- '2.1'
# See issue: https://github.com/ruby/setup-ruby/issues/496
# - '2.2'
- '2.3'
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- jruby-9.1
- jruby-9.3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: rake test