Skip to content

Drop 2.5 support, add more versions #32

Drop 2.5 support, add more versions

Drop 2.5 support, add more versions #32

Workflow file for this run

name: test
on:
- push
- pull_request
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby-version:
- '2.6'
- '2.7'
- '3.0'
- '3.1'
- ruby-head
- jruby-head
- truffleruby-head
runs-on:
- ubuntu-latest
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- run: bundle exec rake test