Sha256: e41195c3aed8c9975d560d6a5acd64bfcbe6d1f1a3915d9dd53e2cf03114c097
Contents?: true
Size: 663 Bytes
Versions: 4
Compression:
Stored size: 663 Bytes
Contents
name: CI on: [push, pull_request] jobs: test: name: 'Ruby: ${{ matrix.ruby-version }}' runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby-version: ['2.5', '2.6', '2.7', '3.0', 'jruby-9.1.17.0', 'jruby'] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run tests run: | bundle exec rake --version bundle exec rake tests env: JRUBY_OPTS: --server -J-Xms512m -J-Xmx2G
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
recog-2.3.22 | .github/workflows/ci.yml |
recog-2.3.21 | .github/workflows/ci.yml |
recog-2.3.20 | .github/workflows/ci.yml |
recog-2.3.19 | .github/workflows/ci.yml |