summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2022-11-13 20:51:56 +0100
committerKornelius Kalnbach <murphy@rubychan.de>2022-11-13 20:51:56 +0100
commit286211777036fb67f82b3a24475a8fc61301bf53 (patch)
tree3d469679a547cebb49a92e8366dc7d554a8dc618
parentbd3a1676792aa2e370a308eca5753e6c52192d1a (diff)
downloadcoderay-286211777036fb67f82b3a24475a8fc61301bf53.tar.gz
add CircleCI config
-rw-r--r--.circleci/config.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..9dd6de4
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,12 @@
+jobs:
+ build:
+ docker:
+ - image: cimg/ruby:3.1.2
+ environment:
+ RAILS_ENV: test
+ steps:
+ - checkout
+ - run: |
+ bundle install
+ - run: |
+ bundle exec rake test