perf: use ecto.load instead of ecto.migrate for faster e2e database setup

This commit is contained in:
Graham McIntire 2026-03-07 16:39:44 -06:00
parent 4665ee6b53
commit 280ac70c1a
No known key found for this signature in database

View file

@ -156,7 +156,9 @@ jobs:
run: mix deps.get
- name: Setup database
run: mix ecto.setup
run: |
mix ecto.create
mix ecto.load --skip-if-loaded
- name: Start Phoenix server in background
run: |