Sha256: acf21d79e747288403db05c83ffb3dc17ed257bf7034d0505730a538633cfaa3
Contents?: true
Size: 1021 Bytes
Versions: 1
Compression:
Stored size: 1021 Bytes
Contents
# This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support # documentation. # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby name: Ruby CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: [2.4.10, 2.5.8, 2.6.6, 2.7.2] activemodel: [4.2.x, 5.1.x, 5.2.x] exclude: - ruby-version: 2.7.2 activemodel: 4.2.x steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - name: Install dependencies run: bundle install --gemfile gemfiles/Gemfile.activemodel-${{ matrix.activemodel }} - name: Run tests run: bundle exec rake spec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rest-in-peace-6.1.0 | .github/workflows/rspec.yml |