Skip to content

Commit

Permalink
pass password via env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
lennartkoopmann committed May 10, 2020
1 parent d4a8840 commit 9b26e78
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ jobs:
- uses: actions/checkout@v2

- name: Create Database
run: createdb --host=localhost --port=5432 --username=postgres --password=postgres nzyme-java-tests

run: createdb --host=localhost --port=5432 --username=postgres nzyme-java-tests
env:
PGPASSWORD: postgres
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
Expand Down

0 comments on commit 9b26e78

Please sign in to comment.