Try PostgreSQL store

This commit is contained in:
Yury Gargay
2024-01-04 16:20:04 +01:00
parent 1de3bb5420
commit b0729c5944
7 changed files with 939 additions and 9 deletions

View File

@@ -15,8 +15,20 @@ jobs:
strategy:
matrix:
arch: ['386','amd64']
store: ['jsonfile', 'sqlite']
store: ['jsonfile', 'sqlite', 'postgresql']
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: integrations
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
ports:
- 5432:5432
steps:
- name: Install Go
uses: actions/setup-go@v4