summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/.circleci/config.yml.tt
blob: 660943a3df5828a6ad42efaa00f7464e17063851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
version: 2.1
jobs:
  build:
    docker:
      - image: ruby:<%= RUBY_VERSION %>
    steps:
      - checkout
      - run:
          name: Run tests
          command: |
            gem install bundler -v <%= Bundler::Version %>
            bundle install
            bundle exec rake test