From 0581459a2cae6f0fc17276474ae07b68652267da Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Tue, 7 Mar 2023 22:39:32 -0500 Subject: [PATCH] Parallelize --- .drone.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.drone.yml b/.drone.yml index 9de4461..ea7ce32 100644 --- a/.drone.yml +++ b/.drone.yml @@ -17,6 +17,8 @@ steps: path: /usr/local/bundle commands: - bin/rails zeitwerk:check + depends_on: + - install - name: lint image: ruby:3.2.0 @@ -25,6 +27,8 @@ steps: path: /usr/local/bundle commands: - bin/bundle exec standardrb + depends_on: + - install - name: test image: ruby:3.2.0 @@ -33,6 +37,8 @@ steps: path: /usr/local/bundle commands: - bin/rails test + depends_on: + - install volumes: - name: bundle