deps: Bump Asp.Versioning.Mvc.ApiExplorer from 8.1.1 to 10.0.0 #126
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |