Revert "chore: fix config"

This reverts commit 035e977ffe.
This commit is contained in:
Nolan Lawson 2022-11-25 08:54:48 -08:00
parent 035e977ffe
commit 81a7b06329
1 changed files with 5 additions and 2 deletions

View File

@ -9,6 +9,9 @@ jobs:
postgres:
image: postgres:12.2
env:
POSTGRES_USER: pinafore
POSTGRES_PASSWORD: pinafore
POSTGRES_DB: pinafore_development
POSTGRES_HOST: 127.0.0.1
POSTGRES_PORT: 5432
ports:
@ -27,8 +30,8 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.3'
- name: Setup pinafore Postgres user
run: sudo -u postgres psql -h 127.0.0.1 -d template1 -c "CREATE USER pinafore WITH PASSWORD 'pinafore' CREATEDB;"
# - name: Setup pinafore Postgres user
# run: sudo -u postgres psql -h 127.0.0.1 -d template1 -c "CREATE USER pinafore WITH PASSWORD 'pinafore' CREATEDB;"
- name: Install Mastodon system dependencies
run: |
sudo apt-get update