Sha256: 327542871b66e7a4160e3a31b448f127f0a2de412cfccf192e52a82438cc3473
Contents?: true
Size: 1.51 KB
Versions: 5
Compression:
Stored size: 1.51 KB
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: build on: [push, pull_request] jobs: test: runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: ruby: - 3.1 - '3.0' - 2.7 - 2.6 - 2.5 # - jruby-9.2.19.0 # - jruby-9.3.1.0 rails: - '~> 5.1.0' - '~> 5.2.0' - '~> 6.0.0' - '~> 6.1.0' - '~> 7.0.0' - 'edge' exclude: # Rails edge is now 7.x and requires ruby 2.7 - rails: 'edge' ruby: 2.6 - rails: 'edge' ruby: 2.5 - rails: '~> 7.0.0' ruby: 2.6 - rails: '~> 7.0.0' ruby: 2.5 # Legacy Rails with newer rubies - rails: '~> 5.1.0' ruby: '3.0' - rails: '~> 5.2.0' ruby: '3.0' - rails: '~> 5.1.0' ruby: 3.1 - rails: '~> 5.2.0' ruby: 3.1 env: RAILS: ${{ matrix.rails }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rake
Version data entries
5 entries across 5 versions & 1 rubygems