Skip to content

Commit

Permalink
Fix CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-sidorov committed Nov 28, 2024
1 parent a104d71 commit b6d004b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
image: postgres:latest
ports: ["5432:5432"]
env:
POSTGRES_USER: x_budget
POSTGRES_PASSWORD: blork_erlang
POSTGRES_USER: bd_tracker
POSTGRES_PASSWORD: bd_tracker
POSTGRES_HOST_AUTH_METHOD: "trust"
POSTGRES_DB: x_budget_backend_test
POSTGRES_DB: bd_tracker_test
options: >-
--health-cmd pg_isready
--health-interval 10s
Expand Down Expand Up @@ -108,3 +108,5 @@ jobs:
run: mix deps.compile
- name: Check formatted
run: mix format --check-formatted
- name: Check codestyle
run: mix credo
1 change: 1 addition & 0 deletions lib/budget_tracker_web/live/accounts_live/index.ex
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ defmodule BudgetTrackerWeb.DebitAccountsLive do
</.link>
</div>
<.modal title="New income" id={@new_income_modal_name}>
<%!-- TODO: merge income and payment forms and move it to operations live page --%>
<.simple_form for={@new_income_form}>
<.input_field field={@new_income_form[:title]} type="text" label="Title" required />
<.input field={@new_income_form[:amount]} type="text" label="Initial amount" required />
Expand Down

0 comments on commit b6d004b

Please sign in to comment.