Sha256: 9071e38dbcd7df947d0c297e84c42bf7bf487c94925975bb58cebb76fe150f2c
Contents?: true
Size: 776 Bytes
Versions: 13
Compression:
Stored size: 776 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 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 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
13 entries across 13 versions & 1 rubygems