Skip to content

Add mutation testing with 100% coverage, enforce method coverage #7

Add mutation testing with 100% coverage, enforce method coverage

Add mutation testing with 100% coverage, enforce method coverage #7

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- '3.4'
- '4.0'
- ruby-head
- jruby-9.4
- jruby-10.0
- jruby-head
- truffleruby
steps:
- uses: actions/checkout@v6
- run: rm Gemfile.lock
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
continue-on-error: ${{ (matrix.ruby-version == 'ruby-head') || (matrix.ruby-version == 'jruby-head') || (matrix.ruby-version == 'truffleruby') }}
- run: bundle exec rake test
continue-on-error: ${{ (matrix.ruby-version == 'ruby-head') || (matrix.ruby-version == 'jruby-head') || (matrix.ruby-version == 'truffleruby') }}