From 8f26dfd373b0c0840f627c791458bea74bfbfc3d Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Fri, 21 Jun 2024 23:28:45 -0400 Subject: [PATCH] Update ci to rubocop and add brakeman --- .drone.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 795036c..7d73420 100644 --- a/.drone.yml +++ b/.drone.yml @@ -26,7 +26,17 @@ steps: - name: bundle path: /usr/local/bundle commands: - - bin/bundle exec standardrb + - bin/rubocop + depends_on: + - install + +- name: brakeman + image: ruby:3.3.1 + volumes: + - name: bundle + path: /usr/local/bundle + commands: + - bin/brakeman depends_on: - install