mirror of
https://github.com/sprockets/sprockets-postgres.git
synced 2024-11-13 03:00:19 +00:00
install psql
This commit is contained in:
parent
ff541b7c19
commit
05cedb1d57
1 changed files with 3 additions and 1 deletions
4
.github/workflows/testing.yaml
vendored
4
.github/workflows/testing.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue