File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 3131 # needed because the postgres container does not provide a healthcheck
3232 options : --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
3333 steps :
34+ - name : load test data
35+ run : |
36+ sudo apt-get update
37+ sudo apt-get install -y postgresql-client
38+ PGPASSWORD="postgres" psql -U postgres -d postgres < tests/load-data.sql
3439 - uses : actions/checkout@v1
3540 - uses : actions-rs/toolchain@v1
3641 with :
Original file line number Diff line number Diff line change 3939 # needed because the postgres container does not provide a healthcheck
4040 options : --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
4141 steps :
42+ - name : load test data
43+ run : |
44+ sudo apt-get update
45+ sudo apt-get install -y postgresql-client
46+ PGPASSWORD="postgres" psql -U postgres -d postgres < tests/load-data.sql
4247 - uses : actions/checkout@v1
4348 - uses : actions-rs/toolchain@v1
4449 with :
You can’t perform that action at this time.
0 commit comments