Skip to content

Commit

Permalink
ci: switch postgres service to trust password-less authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
azasypkin committed Mar 30, 2024
1 parent eeae606 commit 905290a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

env:
CARGO_TERM_COLOR: always
DATABASE_URL: postgres://postgres:password@localhost:5432/secutils
DATABASE_URL: postgres://postgres@localhost:5432/secutils

jobs:
ci:
Expand All @@ -27,7 +27,7 @@ jobs:
postgres:
image: postgres:latest
env:
POSTGRES_PASSWORD: password
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
steps:
Expand Down

0 comments on commit 905290a

Please sign in to comment.