Sha256: c2b882953c0831782bbc3827dc6a0f4b256c3e20731b83ed29cc22a055691c9b
Contents?: true
Size: 584 Bytes
Versions: 7
Compression:
Stored size: 584 Bytes
Contents
name: CI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: [ '2.5', '2.6', '2.7', '3.0' , '3.1'] minimal: [ false, true ] name: Ruby ${{ matrix.ruby }} tests, minimal=${{ matrix.minimal }} steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests env: MINIMAL: ${{ matrix.minimal }} run: bundle exec rake
Version data entries
7 entries across 7 versions & 1 rubygems