File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 3535 run : |
3636 sudo apt-get update
3737 sudo apt-get install -y postgresql-client
38- PGPASSWORD="postgres" psql -U postgres -d postgres < tests/load-data.sql
38+ PGPASSWORD="postgres" psql -U postgres -d postgres < ./ tests/load-data.sql
3939 - uses : actions/checkout@v1
4040 - uses : actions-rs/toolchain@v1
4141 with :
Original file line number Diff line number Diff line change @@ -39,11 +39,16 @@ jobs:
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 : get path
43+ run : |
44+ pwd
45+ ls -lh
46+ ls -lh tests
4247 - name : load test data
4348 run : |
4449 sudo apt-get update
4550 sudo apt-get install -y postgresql-client
46- PGPASSWORD="postgres" psql -U postgres -d postgres < tests/load-data.sql
51+ PGPASSWORD="postgres" psql -U postgres -d postgres < ./ tests/load-data.sql
4752 - uses : actions/checkout@v1
4853 - uses : actions-rs/toolchain@v1
4954 with :
You can’t perform that action at this time.
0 commit comments