From c96a84d1a1f60dcca4a75d154a4a19c603766893 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Thu, 19 Nov 2020 14:23:43 +0100 Subject: [PATCH] Add initial Drone CI config --- .drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..9fbb90b --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +kind: pipeline +type: docker +name: CI build + +steps: + - name: rspec + image: guildeducation/rails:2.7.1-12.19.0 + commands: + - bundle install + - yarn install + - bundle exec rspec + when: + branch: + - master