Skip to content

Avoid terminating the process inside lib/ code #5

Avoid terminating the process inside lib/ code

Avoid terminating the process inside lib/ code #5

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
ruby-version:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- '3.4'
steps:
- uses: actions/checkout@v6
- run: ./bin/setup-deps
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- run: bundle exec rake spec