Sha256: 069018be3e0dfb3f1ec591fdda1a0597f1d2547750c7265202606ba767bdadd1
Contents?: true
Size: 668 Bytes
Versions: 4
Compression:
Stored size: 668 Bytes
Contents
name: RSpec on: push: branches: [ master ] pull_request: jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['2.7', '3.0', '3.1'] steps: - uses: actions/checkout@v2 - name: Set up Ruby # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, # change this to (see https://github.com/ruby/setup-ruby#versioning): # uses: ruby/setup-ruby@v1 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 data entries
4 entries across 4 versions & 1 rubygems