Skip to content

allow all versions of fasterer from 0.10+ but less than 1.0 #14

allow all versions of fasterer from 0.10+ but less than 1.0

allow all versions of fasterer from 0.10+ but less than 1.0 #14

Workflow file for this run

name: Checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ruby:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: rake spec
run: bundle exec rake spec