Skip to content

Fix misleading README.md example #592

Fix misleading README.md example

Fix misleading README.md example #592

Workflow file for this run

name: Test
on: [push, pull_request]
env:
RUBYOPT: --enable=frozen-string-literal --debug=frozen-string-literal
jobs:
test:
name: on ruby ${{matrix.ruby}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4.0-preview2", head]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: RSpec
run: bin/rspec