Skip to content

Release 4.0.2

Release 4.0.2 #73

Workflow file for this run

name: rspec
on:
push:
pull_request:
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.2' # minimum supported Ruby
- '3.3'
- '3.4'
- '4.0' # future compatibility signal
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
bundler-cache: true
- run: bundle exec rspec --format documentation