[go: up one dir, main page]

Skip to content

docs(website): bump theguild components and migrate (#14) #134

docs(website): bump theguild components and migrate (#14)

docs(website): bump theguild components and migrate (#14) #134

Workflow file for this run

name: Database
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
init-check:
name: Init check
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16
env:
POSTGRES_PASSWORD: wowmuchsecret
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Init check
env:
PGHOST: localhost
PGPORT: ${{ job.services.postgres.ports[5432] }}
POSTGRES_USER: postgres
PGPASSWORD: wowmuchsecret
POSTGRES_DB: heltin
run: database/init.sh