Skip to content

Merge pull request #95 from boutil/master #15

Merge pull request #95 from boutil/master

Merge pull request #95 from boutil/master #15

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
ruby-version:
- '1.9'
- '2.0'
- '2.1'
- '2.2'
- '2.3'
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- ruby-head
- jruby
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
continue-on-error: ${{ matrix.ruby-version == 'ruby-head' }}
- run: |
bundle exec rake
continue-on-error: ${{ (matrix.ruby-version == 'ruby-head') || (matrix.ruby-version == 'jruby') }}