diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index c3beaba..cfff065 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -16,3 +16,5 @@ jobs: HEX_API_KEY: ${{ secrets.HEX_API_KEY }} with: postgres: true + ecto_postgres: true + ash_postgres: false diff --git a/mix.exs b/mix.exs index 90f6b8c..11f598b 100644 --- a/mix.exs +++ b/mix.exs @@ -141,10 +141,9 @@ defmodule AshOban.MixProject do "spark.formatter": "spark.formatter --extensions AshOban", "spark.cheat_sheets": "spark.cheat_sheets --extensions AshOban", "spark.cheat_sheets_in_search": "spark.cheat_sheets_in_search --extensions AshOban", - "test.gen.migration": "ecto.gen.migration --migrations-path=test_migrations", - "test.migrate": "ecto.migrate --migrations-path=test_migrations", - "test.create": "ecto.create", - "test.setup": ["test.create", "test/migrate"] + "ecto.gen.migration": "ecto.gen.migration --migrations-path=test_migrations", + "ecto.migrate": "ecto.migrate --migrations-path=test_migrations", + "ecto.setup": ["ecto.create", "ecto.migrate"] ] end end