install psql

This commit is contained in:
Gavin M. Roy 2020-04-06 17:51:28 -04:00
parent ff541b7c19
commit 05cedb1d57

View file

@ -46,7 +46,9 @@ jobs:
run: echo "export POSTGRES_URL=postgresql://postgres@postgres:5432/postgres" > build/test-environment
- name: Install UUID extension
run: psql -q -h postgres -U postgres -d postgres -c 'CREATE EXTENSION "uuid-ossp";'
run: |
apt-get install -y postgresql-client \
&& psql -q -h postgres -U postgres -d postgres -c 'CREATE EXTENSION "uuid-ossp";'
- name: Run flake8 tests
run: flake8