Sha256: c1a98fcb20021fce1d68f7326f329cc3345bad4da0721f4f67a0632b6732c8c8

Contents?: true

Size: 940 Bytes

Versions: 1

Compression:

Stored size: 940 Bytes

Contents

version: 2
jobs:
  test:
    docker:
      - image: circleci/ruby:2.6.5
        environment:
          DATABASE_URL: postgresql://postgres:secret@localhost:5432/ruby-pg-extras-test
      - image: circleci/postgres:11.5
        command: postgres -c shared_preload_libraries=pg_stat_statements -c pg_stat_statements.track=all -c max_connections=200
        environment:
          POSTGRES_USER: postgres
          POSTGRES_DB: ruby-pg-extras-test
          POSTGRES_PASSWORD: secret
    parallelism: 1
    steps:
      - checkout
      - run: gem update --system
      - run: gem install bundler
      - run: bundle install --path vendor/bundle
      - run: sudo apt-get update
      - run: sudo apt install postgresql-client-11
      - run: dockerize -wait tcp://localhost:5432 -timeout 1m
      - run:
          name: Run specs
          command: |
            bundle exec rspec spec/
workflows:
  version: 2
  test:
    jobs:
      - test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-pg-extras-2.0.0 .circleci/config.yml