Skip to content

Fix infinite recursion on a string followed by an escaped delimiter (… #92

Fix infinite recursion on a string followed by an escaped delimiter (…

Fix infinite recursion on a string followed by an escaped delimiter (… #92

Workflow file for this run

name: Rspec, Rubocop, RBS & Steep
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
# all currently maintained Ruby branches, per https://www.ruby-lang.org/en/downloads/branches/
ruby:
- '3.3'
- '3.4'
- '4.0'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run rspec tests
run: bundle exec rspec
- name: Run rubocop
run: bundle exec rubocop
- name: Validate RBS signatures
run: bundle exec rbs validate
- name: Run steep type check
run: bundle exec steep check