Sha256: db841a6a5cc30a490d6ff739dd10a1facbec5fd730ced76101e61fe4b7fe8086

Contents?: true

Size: 836 Bytes

Versions: 1

Compression:

Stored size: 836 Bytes

Contents

version: 2.1

jobs:
  test:
    parameters:
      ruby:
        type: string
      rails:
        type: string
      postgres:
        type: string
    docker:
      - image: << parameters.ruby >>
      - image: cimg/<< parameters.postgres >>
        environment:
          POSTGRES_HOST_AUTH_METHOD: trust
    steps:
      - checkout
      - run: gem install bundler
      - run: bundle install
      - run: bundle exec appraisal << parameters.rails >> bundle install
      - run: bundle exec appraisal << parameters.rails >> rspec

workflows:
  all-tests:
    jobs:
      - test:
          matrix:
            parameters:
              ruby: ['ruby:2.7', 'ruby:3.0', 'ruby:3.1']
              rails: ['rails-6.0', 'rails-6.1', 'rails-7.0']
              postgres: ['postgres:11.13', 'postgres:12.9', 'postgres:13.5', 'postgres:14.1']

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
activerecord-tenant-level-security-0.1.0 .circleci/config.yml