2023-05-29 16:35:13 +02:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2023-05-30 15:16:16 +02:00
|
|
|
runs-on: docker
|
2023-07-08 14:06:13 +02:00
|
|
|
container:
|
2023-09-29 19:17:38 +02:00
|
|
|
image: code.forgejo.org/oci/debian:bookworm
|
2023-05-29 16:35:13 +02:00
|
|
|
|
|
|
|
services:
|
|
|
|
pgsql:
|
2023-09-29 19:17:38 +02:00
|
|
|
image: code.forgejo.org/oci/postgres:15
|
2023-05-29 16:35:13 +02:00
|
|
|
env:
|
|
|
|
POSTGRES_DB: test
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
steps:
|
|
|
|
- run: |
|
|
|
|
apt-get update -qq
|
2023-07-08 14:06:13 +02:00
|
|
|
apt-get install -y -qq postgresql-client
|
2023-05-29 16:35:13 +02:00
|
|
|
PGPASSWORD=postgres psql -h pgsql -U postgres -c '\dt' test
|