Sha256: 8b811a76659db3e5445f2537ca4c06927c0a62ecbea4455f3dd5a820696e2b30

Contents?: true

Size: 711 Bytes

Versions: 2

Compression:

Stored size: 711 Bytes

Contents

name: Tests

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        ruby-version:
          - head
          - '3.1'
          - '3.0'
          - '2.7'
          - '2.6'
          - '2.5'
          - '2.4'
          - '2.3'
          - '2.2'
          - '2.1'
          - '2.0'
          - jruby-head
          - jruby-9.3
          - jruby-9.2
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby ${{ matrix.ruby-version }}
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true # 'bundle install' and cache
    - name: Run tests
      run: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
minitest-reporters-1.6.1 .github/workflows/ci.yml
minitest-reporters-1.6.0 .github/workflows/ci.yml