From 85749a4616f99c35025a1d2b2dee5a2412e0adde Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Wed, 20 Aug 2025 22:57:04 -0400 Subject: [PATCH] Changing woodpecker config to create the DB right before tests --- .woodpecker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index fc00489..2ebcd1c 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -7,7 +7,6 @@ steps: - gem install rake - bundle config set --local path "vendor/bundle" - bundle install - - rake db:migrate test_ruby34: image: ruby:3.4 @@ -16,6 +15,7 @@ steps: commands: - gem install rake - bundle config set --local path "vendor/bundle" + - rake db:migrate - rake test:unit group: tests