Skip to content

Commit

Permalink
Fixed github-actions.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbywater committed Nov 8, 2024
1 parent d6458e3 commit 4bb99e7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ jobs:
run: |
PGPASSWORD=postgres psql -c 'CREATE DATABASE eventsourcing_django;' -U postgres -h localhost
PGPASSWORD=postgres psql -c "CREATE USER eventsourcing WITH PASSWORD 'eventsourcing';" -U postgres -h localhost
PGPASSWORD=postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE 'eventsourcing_django' TO eventsourcing;" -U postgres -h localhost
PGPASSWORD=postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE 'test_eventsourcing_django' TO eventsourcing;" -U postgres -h localhost
# PGPASSWORD=postgres psql -c "ALTER DATABASE eventsourcing_django OWNER TO eventsourcing;" -U postgres -h localhost
# PGPASSWORD=postgres psql eventsourcing_django -c "CREATE SCHEMA myschema AUTHORIZATION eventsourcing" -U postgres -h localhost
- name: Run tests
Expand Down

0 comments on commit 4bb99e7

Please sign in to comment.