From 499c679a6738e75cd23dffd08a5b7fc41820b454 Mon Sep 17 00:00:00 2001 From: Ken Johnson Date: Mon, 5 Jan 2026 12:37:41 -0500 Subject: [PATCH] Fix: Use bundle exec rails instead of bin/rails The project doesn't have bin/rails binstubs, so use bundle exec rails for database setup commands. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a36b1de..fa13bee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,8 +28,8 @@ jobs: - name: Setup database run: | - RAILS_ENV=test bin/rails db:create - RAILS_ENV=test bin/rails db:migrate + RAILS_ENV=test bundle exec rails db:create + RAILS_ENV=test bundle exec rails db:migrate - name: Run tests env: