Skip to content

Bump rspec from 3.9.0 to 3.13.2 #15

Bump rspec from 3.9.0 to 3.13.2

Bump rspec from 3.9.0 to 3.13.2 #15

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["3.4"] # Ruby 4.0 readiness: target latest stable 3.x line
env:
INTERSCRIPT_GEM_VERSION: "0.1.9"
steps:
- uses: actions/checkout@v7
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec
standard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.4"
bundler-cache: true
- run: bundle exec standardrb