Skip to content

forgot about spec.extensions #80

forgot about spec.extensions

forgot about spec.extensions #80

Workflow file for this run

name: Test with Minitest
on:
push:
paths:
- .github/workflows/test.yml
- ext/**
- lib/**
- test/**
- Gemfile
- '*.gemspec'
pull_request:
paths:
- .github/workflows/test.yml
- ext/**
- 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: Build with Rake
run: bundle exec rake
- name: Test with Minitest
run: bundle exec rake test:isolated