perf: use ecto.load instead of ecto.migrate for faster e2e database setup
This commit is contained in:
parent
4665ee6b53
commit
280ac70c1a
1 changed files with 3 additions and 1 deletions
|
|
@ -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: |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue