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.
This commit is contained in:
Ken Johnson
2026-01-05 12:37:41 -05:00
parent 151cc14364
commit 499c679a67
+2 -2
View File
@@ -28,8 +28,8 @@ jobs:
- name: Setup database - name: Setup database
run: | run: |
RAILS_ENV=test bin/rails db:create RAILS_ENV=test bundle exec rails db:create
RAILS_ENV=test bin/rails db:migrate RAILS_ENV=test bundle exec rails db:migrate
- name: Run tests - name: Run tests
env: env: