Skip to content

Update minitest requirement from ~> 5.23.0 to ~> 5.24.0 #106

Update minitest requirement from ~> 5.23.0 to ~> 5.24.0

Update minitest requirement from ~> 5.23.0 to ~> 5.24.0 #106

Workflow file for this run

name: Test with Minitest
on:
push:
paths:
- .github/workflows/test.yml
- lib/**
- test/**
- Gemfile
- '*.gemspec'
pull_request:
paths:
- .github/workflows/test.yml
- lib/**
- test/**
- Gemfile
- '*.gemspec'
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
ruby-version: ['3', '3.1']
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Test with Minitest
run: bundle exec rake test:isolated