Skip to content

Commit

Permalink
main fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kortschak committed Sep 27, 2024
1 parent 7a36fba commit 19a07a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ jobs:
--command="ALTER USER $PGUSER CREATEDB" \
--command="CREATE USER ${PGUSER}_ro PASSWORD '$PGPASSWORD'" \
--command="\du"
echo ${PGHOST}:${PGPORT}:*:${PGUSER}:${PGPASSWORD} >> ~/.pgpass
echo ${PGHOST}:${PGPORT}:*:${PGUSER}_ro:${PGPASSWORD} >> ~/.pgpass
chmod 600 ~/.pgpass
- name: unit tests postgres
run: |
Expand Down
2 changes: 1 addition & 1 deletion testdata/worklog_load_postgres.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ log_level = "debug"
log_add_source = true

[module.worklog.options]
database = "postgres://${PGUSER}:${PGPASSWORD}@${PGHOST}:${PGPORT}/test_database"
database = "postgres://${PGUSER}@${PGHOST}:${PGPORT}/test_database"
hostname = "localhost"
[module.worklog.options.web]
addr = "localhost:9797"
Expand Down

0 comments on commit 19a07a2

Please sign in to comment.