We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e58ef commit 332ea0eCopy full SHA for 332ea0e
1 file changed
.github/workflows/run_tests.yml
@@ -12,15 +12,14 @@ jobs:
12
13
steps:
14
- uses: actions/checkout@v4
15
+ - uses: ikalnytskyi/action-setup-postgres@v7
16
- name: Install postgres
17
run: |
- sudo apt update
18
- sudo apt install postgresql postgresql-contrib
19
- sudo systemctl status postgresql
20
- sudo systemclt start postgresql
+ psql postgresql://postgres:postgres@localhost:5432/postgres -f ./scripts/roles.sql
21
psql postgresql://postgres:postgres@localhost:5432/postgres -c "SELECT 1"
22
psql service=postgres -c "SELECT 1"
23
psql -c "SELECT 1"
+ su - postgresql
24
env:
25
PGSERVICE: postgres
26
- name: Setup Go ${{ matrix.go-version }}
0 commit comments