CI(build-and-test): make pg-versions configurable

This commit is contained in:
Alexander Bayandin
2024-07-31 10:36:01 +01:00
parent 176eefa47a
commit d4d70cc314

View File

@@ -258,8 +258,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# Run tests on all Postgres versions in release builds and only on the latest version in debug builds
pg_version: ${{ fromJson(inputs.build-type == 'release' && '["v14", "v15", "v16"]' || '["v16"]') }}
pg_version: ${{ fromJson(inputs.pg-versions) }}
steps:
- uses: actions/checkout@v4
with: