Skip to content

Fix specs

Fix specs #7

Workflow file for this run

name: CI RSpec Test
on: [push, pull_request]
jobs:
build:
name: >-
${{ matrix.ruby }}
env:
CI: true
TESTOPTS: -v
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
ruby:
- 2.7
- 3.0
- 3.1
- 3.2
- 3.3
experimental: [false]
include:
- ruby: head
experimental: true
steps:
- name: repo checkout
uses: actions/checkout@v2
- name: load ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: 2
- name: bundle install
run: bundle install --jobs 4 --retry 3
- name: test
timeout-minutes: 10
run: bundle exec rake test
continue-on-error: ${{ matrix.experimental }}