Sha256: 93c578fefaedddfc11e8fedb2c4cf0cab30ff4ac43507b2243557db72aeeb4b4
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 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: - 2.7 - 2.6 gemfile: - Gemfile.rails42 - Gemfile.rails52 # Min ruby 2.2.2 - Gemfile.rails60 # Min ruby 2.5.0 - Gemfile.rails61 # Min ruby 2.5.0 exclude: - gemfile: Gemfile.rails42 ruby: 2.7 - gemfile: Gemfile.rails52 ruby: 2.7 env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rspec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
apipie-rails-0.5.20 | .github/workflows/build.yml |