ci: add gitea ci/cd pipeline
Some checks failed
Code Quality / Code Quality (Elixir 1.15 OTP 26.0) (push) Failing after 2m16s
Docker Build and Publish / docker-build (push) Failing after 6m37s

This commit is contained in:
Schuwi
2025-09-20 12:24:50 +02:00
parent a6991b6877
commit 537a97cecc
4 changed files with 266 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ import Config
# Run `mix help test` for more information.
config :components_elixir, ComponentsElixir.Repo,
username: "postgres",
password: "fCnPB8VQdPkhJAD29hq6sZEY",
password: System.get_env("POSTGRES_PASSWORD") || "fCnPB8VQdPkhJAD29hq6sZEY",
hostname: "localhost",
database: "components_elixir_test#{System.get_env("MIX_TEST_PARTITION")}",
pool: Ecto.Adapters.SQL.Sandbox,