Sha256: 1fc8da63a315b229ccfb8f344c39e844517d6ae22322734dfff175e0e7356f9f

Contents?: true

Size: 665 Bytes

Versions: 5

Compression:

Stored size: 665 Bytes

Contents

name: Build and Test
on: [push, pull_request]
jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        gemfile: [rails60, rails61, rails70]
        ruby: ["3.0", "3.1", "3.2"]
    runs-on: ubuntu-latest
    env:
      BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rake
      - name: Coveralls
        uses: coverallsapp/github-action@master
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}
          path-to-lcov: coverage/lcov.info

Version data entries

5 entries across 5 versions & 5 rubygems

Version Path
table_creator-0.4.0 .github/workflows/ruby.yml
sealink-param-validation-0.4.0 .github/workflows/ruby.yml
money_extensions-1.5.0 .github/workflows/ruby.yml
activerecord_null_object-0.8.0 .github/workflows/ruby.yml
rails_core_extensions-0.15.0 .github/workflows/ruby.yml