Sha256: c55046cdaeaf5fc4301774f01433c9fa888e0ca0e2ff4a46474c052e7ff00c9b

Contents?: true

Size: 901 Bytes

Versions: 1

Compression:

Stored size: 901 Bytes

Contents

name: Ruby

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  test:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby-version: ['2.7']
        gemfile:
          - gemfiles/Gemfile-activemodel-5.0.x
          - gemfiles/Gemfile-activemodel-5.1.x
          - gemfiles/Gemfile-activemodel-5.2.x
          - gemfiles/Gemfile-activemodel-6.0.x
          - gemfiles/Gemfile-activemodel-6.1.x
          - gemfiles/Gemfile-activemodel-7.0.x

    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
        with:
          ruby-version: ${{ matrix.ruby-version }}
      - name: Install dependencies for ${{ matrix.gemfile}}
        run: bundle install --gemfile=${{ matrix.gemfile  }}
      - name: Run tests
        run: bundle exec rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sps_king-0.2.0 .github/workflows/test.yml