Sha256: df09a5e46232ea20f2676163ba83087487c398c9a33b5317907f714ac88b78c0

Contents?: true

Size: 619 Bytes

Versions: 1

Compression:

Stored size: 619 Bytes

Contents

version: 2.1 # Use 2.1 to enable using orbs and other features.

# Declare the orbs that we'll use in our config.
# read more about orbs: https://circleci.com/docs/2.0/using-orbs/
orbs:
  ruby: circleci/ruby@1.0 

jobs:
  build: # our first job, named "build"
    docker:
      - image: cimg/ruby:2.7-node # use a tailored CircleCI docker image.
    steps:
      - checkout
      - run: sudo apt update
      - run: sudo apt install -y libsqlite3-dev zlib1g-dev
      - ruby/install-deps # use the ruby orb to install dependencies
      - ruby/rspec-test
    environment:
      BUNDLE_JOBS: "3"
      BUNDLE_RETRY: "3"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
boolean_timestamps-1.1.0 circle.yml