Run a postgres 16 docker image in our GitHub workflow

This commit is contained in:
Joakim Hellsén 2024-02-16 05:00:44 +01:00
commit 1422c3847c
2 changed files with 12 additions and 0 deletions

View file

@ -11,6 +11,17 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
services:
postgres:
image: postgres:16
env:
POSTGRES_USER: feedvault
POSTGRES_PASSWORD: feedvault
POSTGRES_DB: feedvault
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View file

@ -31,6 +31,7 @@
"homerouter", "homerouter",
"hotspot", "hotspot",
"huaweimobilewifi", "huaweimobilewifi",
"isready",
"jackc", "jackc",
"ldflags", "ldflags",
"leftright", "leftright",