summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/.circleci/config.yml.tt
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/templates/newgem/.circleci/config.yml.tt')
-rw-r--r--lib/bundler/templates/newgem/.circleci/config.yml.tt13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/bundler/templates/newgem/.circleci/config.yml.tt b/lib/bundler/templates/newgem/.circleci/config.yml.tt
new file mode 100644
index 0000000000..660943a3df
--- /dev/null
+++ b/lib/bundler/templates/newgem/.circleci/config.yml.tt
@@ -0,0 +1,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