We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 071da77 commit f0662f8Copy full SHA for f0662f8
1 file changed
.github/workflows/run_tests.yml
@@ -12,6 +12,14 @@ jobs:
12
13
steps:
14
- uses: actions/checkout@v4
15
+ - uses: ikalnytskyi/action-setup-postgres@v7
16
+ - name: Install postgres
17
+ run: |
18
+ psql postgresql://postgres:postgres@localhost:5432/postgres -c "SELECT 1"
19
+ psql service=postgres -c "SELECT 1"
20
+ psql -c "SELECT 1"
21
+ env:
22
+ PGSERVICE: postgres
23
- name: Setup Go ${{ matrix.go-version }}
24
uses: actions/setup-go@v5
25
with:
0 commit comments