Sha256: 3b521ea4e8424616fe591b203e9d7fa4be67c1b3aa9b7736c3158b6411dfcc1d

Contents?: true

Size: 811 Bytes

Versions: 3

Compression:

Stored size: 811 Bytes

Contents

name: Ruby

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

jobs:
  test:
    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        ruby: ['3.0', '3.1', '3.2', '3.3']
        gemfile:
          - gemfiles/Gemfile-activemodel-6.1.x
          - gemfiles/Gemfile-activemodel-7.0.x
          - gemfiles/Gemfile-activemodel-7.1.x

    name: Ruby ${{ matrix.ruby }} / Gemfile {{ matrix.gemfile }}

    steps:
      - uses: actions/checkout@v3

      - name: Set up Ruby ${{ matrix.ruby }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}

      - name: Install dependencies for ${{ matrix.gemfile }}
        run: bundle install --gemfile=${{ matrix.gemfile }}

      - name: Run tests
        run: bundle exec rspec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sps_king-0.5.0 .github/workflows/test.yml
sps_king-0.4.0 .github/workflows/test.yml
sps_king-0.3.1 .github/workflows/test.yml