Sha256: 491acc3ead1b4de36ed3e06c026c89594c95da8ce006a5eafc986c38df9f6005
Contents?: true
Size: 939 Bytes
Versions: 1
Compression:
Stored size: 939 Bytes
Contents
version: 2 jobs: test: docker: - image: circleci/ruby:2.6.5 environment: DATABASE_URL: postgresql://postgres:secret@localhost:5432/rails-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: rails-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 - 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 |
---|---|
rails-pg-extras-2.0.0 | .circleci/config.yml |