Skip to content

chore(deps): update postgrest/postgrest:devel docker digest to 1bc324a #389

chore(deps): update postgrest/postgrest:devel docker digest to 1bc324a

chore(deps): update postgrest/postgrest:devel docker digest to 1bc324a #389

Workflow file for this run

name: Pull Request
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: Hadolint
run: docker compose run --rm hadolint Dockerfile
- name: Shellcheck
run: docker compose run --rm shellcheck tools/*
build-test:
strategy:
matrix:
pg: [12, 13, 14, 14-invoker, 15, 16]
pgrst: [9, 10, 11, 12, devel]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: Build
uses: docker/build-push-action@v6.10.0
with:
build-args: |
PG_MAJOR=${{ matrix.pg }}
PGRST_MAJOR=${{ matrix.pgrst }}
- name: Build Test
uses: docker/build-push-action@v6.10.0
with:
build-args: |
PG_MAJOR=${{ matrix.pg }}
PGRST_MAJOR=${{ matrix.pgrst }}
target: test
- name: Test
run: DOCKER_BUILDKIT=1 docker compose run --rm bats test