Skip to content

Update rake requirement from ~> 13.0.0 to ~> 13.1.0 #26

Update rake requirement from ~> 13.0.0 to ~> 13.1.0

Update rake requirement from ~> 13.0.0 to ~> 13.1.0 #26

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.0']
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