From 519955e57ae615b937ed0bcde9dbe58cb4b61374 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Tue, 12 Aug 2025 21:30:17 -0400 Subject: [PATCH] Fixing unit tests --- .woodpecker.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index 9c119c3..c0a18de 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -3,6 +3,7 @@ pipeline: group: tests image: ruby:3.4 commands: + - 'gem install rake' - 'bundle config set --local path "vendor/bundle"' - 'bundle install' - 'rake db:migrate' @@ -11,6 +12,7 @@ pipeline: group: tests image: ruby:3.3 commands: + - 'gem install rake' - 'bundle config set --local path "vendor/bundle"' - 'bundle install' - 'rake db:migrate' @@ -19,6 +21,7 @@ pipeline: group: tests image: ruby:3.2 commands: + - 'gem install rake' - 'bundle config set --local path "vendor/bundle"' - 'bundle install' - 'rake db:migrate'