Sha256: d88e5724f2a038ea80d1c42cae7e940841beddfd22f1c554037ef279043c9bef
Contents?: true
Size: 851 Bytes
Versions: 3
Compression:
Stored size: 851 Bytes
Contents
version: 2 jobs: test: docker: - image: circleci/ruby:2.6.5 environment: DATABASE_URL: postgresql://postgres:secret@localhost:5432/activerecord-analyze-test - image: circleci/postgres:11.5 environment: POSTGRES_USER: postgres POSTGRES_DB: activerecord-analyze-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 --allow-releaseinfo-change - 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
activerecord-analyze-0.10.2 | .circleci/config.yml |
activerecord-analyze-0.10.1 | .circleci/config.yml |
activerecord-analyze-0.10.0 | .circleci/config.yml |