Skip to content

Adds matrix pg_version for ci test command #1

Adds matrix pg_version for ci test command

Adds matrix pg_version for ci test command #1

Workflow file for this run

name: tests
on:
pull_request:
push: { branches: master }
jobs:
test:
name: Run tests
strategy:
matrix:
postgres: [14, 15]
runs-on: ubuntu-latest
env:
POSTGRES_VERSION: ${{ matrix.postgres }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build docker images
run: docker-compose -f .ci/docker-compose.yml build
- name: Run tests
run: docker-compose -f .ci/docker-compose.yml run test