Fix infinite recursion on a string followed by an escaped delimiter (… #92
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |