Sha256: 8756d8e60969d9f4d71d353513bf05cf81f637d9fb99c4cc09ce4f6413cf5453
Contents?: true
Size: 811 Bytes
Versions: 8
Compression:
Stored size: 811 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 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
8 entries across 8 versions & 1 rubygems