diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 24acc35d..7ebc97ee 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -57,7 +57,9 @@ jobs: - name: Setup postgres shell: bash - run: psql -d postgres -U postgres -a -f ./scripts/setup_test_database.sql + run: | + apt update && apt-get install postgresql + psql -d postgres -U postgres -a -f ./scripts/setup_test_database.sql env: PGPASSWORD: postgres