Skip to content

Commit

Permalink
postgresのログインユーザー名を追加。
Browse files Browse the repository at this point in the history
  • Loading branch information
fkoyama committed Nov 6, 2023
1 parent cfead2d commit 1475480
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/samples-dressca-backend.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ jobs:
- name: 結合テスト用 PostgreSQL のセットアップ
shell: bash
run: sudo systemctl start postgresql.service
run: |
sudo systemctl start postgresql.service
sudo su - postgres
psql -U postgres
alter role postgres with password 'postgres';
- id: run-tests
name: テストの実行
Expand Down

0 comments on commit 1475480

Please sign in to comment.