Skip to content

deps: Bump Asp.Versioning.Mvc.ApiExplorer from 8.1.1 to 10.0.0 #126

deps: Bump Asp.Versioning.Mvc.ApiExplorer from 8.1.1 to 10.0.0

deps: Bump Asp.Versioning.Mvc.ApiExplorer from 8.1.1 to 10.0.0 #126

name: Integration Tests (PostgreSQL)
# ──────────────────────────────────────────────────────────────────────────────
# Runs the data test suite against PostgreSQL 17.
# Delegates build/test/reporting to the shared integration-test action.
# See: .github/actions/integration-test/action.yml
# ──────────────────────────────────────────────────────────────────────────────
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: Integration Tests (PostgreSQL)
runs-on: ubuntu-latest
services:
postgres:
image: postgres:17
env:
POSTGRES_DB: lumacore_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: >-
--health-cmd "pg_isready -U postgres"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout Repository
uses: actions/checkout@v6
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Run Integration Tests
uses: ./.github/actions/integration-test
with:
provider: postgresql
display-name: PostgreSQL
connection-string: "Host=localhost;Port=5432;Username=postgres;Password=postgres"