Sha256: c1468434131d81be76681b95ce88a617dfae5e805ab0be211502cd7373e634f6
Contents?: true
Size: 574 Bytes
Versions: 1
Compression:
Stored size: 574 Bytes
Contents
name: Matrix Testing on: push: branches: [ main ] pull_request: branches: [ main ] jobs: test: runs-on: ${{ matrix.os }}-latest strategy: fail-fast: false matrix: os: [ubuntu] ruby: [2.5, 2.6, 2.7, head, debug, jruby, jruby-head, truffleruby, truffleruby-head] continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - run: bundle install - run: rspec spec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bouncie-0.7.0 | .github/workflows/matrix_testing.yml |