Sha256: 3e3668556ee3a75d68b97cff3cd2c4c632570ee12c729f900c4d5017a21f2cae
Contents?: true
Size: 746 Bytes
Versions: 1
Compression:
Stored size: 746 Bytes
Contents
# Ruby CircleCI 2.1 configuration file # # Check https://circleci.com/docs/2.0/ruby/ for more details # version: 2.1 orbs: ruby: circleci/ruby@0.2.1 # Ruby orb registry: https://circleci.com/orbs/registry/orb/circleci/ruby jobs: build: docker: - image: circleci/ruby:2.6.5 steps: - checkout - run: name: Install Bundler 2.1.4 command: gem install bundler:2.1.4 - run: name: Which bundler? command: bundle -v - ruby/install-deps - ruby/save-cache - run: name: Tests command: bin/test # What to do next? Set up a test job. Please see # https://circleci.com/docs/2.0/configuration-reference/, for more info on how to get started.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fable-0.5.0 | .circleci/config.yml |