ci: get tests passing for CI

This commit is contained in:
Zach Daniel 2024-02-20 13:50:56 -05:00
parent 27d0ebb154
commit b4e045f867
2 changed files with 5 additions and 4 deletions

View file

@ -16,3 +16,5 @@ jobs:
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
with:
postgres: true
ecto_postgres: true
ash_postgres: false

View file

@ -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