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