Skip to content

Remove #inspect spec #95

Remove #inspect spec

Remove #inspect spec #95

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
workflow_call:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec rubocop
test:
name: Test (Ruby ${{ matrix.ruby }})
runs-on: ubuntu-latest
needs: lint
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle exec rspec