.circleci/config.yml in uniqable-0.2.0 vs .circleci/config.yml in uniqable-0.3.0

- old
+ new

@@ -5,20 +5,24 @@ version: 2 jobs: build: docker: # specify the version you desire here - - image: circleci/ruby:2.4.1-node-browsers + - image: circleci/ruby:2.3-node-browsers # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ # - image: circleci/postgres:9.4 working_directory: ~/repo steps: - checkout + - run: + name: install sqlite + command: | + sudo apt-get install sqlite3 # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "Gemfile.lock" }}