add schema create to ci workflow

This commit is contained in:
Jakub Miazek 2022-04-24 19:01:12 +02:00
parent 2485466db8
commit d70ce04294

View File

@ -25,7 +25,7 @@ jobs:
steps:
- name: Create database schema
run: PGPASSWORD=secret psql -h 127.0.0.1:5432 -d testdb -U user -c "CREATE SCHEMA shakespeare;"
run: PGPASSWORD=secret psql -h 127.0.0.1 -d testdb -U user -c "CREATE SCHEMA shakespeare;"
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2