~cytrogen/masto-fe

ed349b14e238a90cdf12acd0aaae20d59a36814a — Nick Schonning 2 years ago 99e2e9b
Add Postgres 15 testing for migrations (#23887)

M .github/workflows/test-migrations-one-step.yml => .github/workflows/test-migrations-one-step.yml +9 -1
@@ 23,9 23,17 @@ jobs:
    needs: pre_job
    if: needs.pre_job.outputs.should_skip != 'true'

    strategy:
      fail-fast: false

      matrix:
        postgres:
          - 14-alpine
          - 15-alpine

    services:
      postgres:
        image: postgres:14-alpine
        image: postgres:${{ matrix.postgres}}
        env:
          POSTGRES_PASSWORD: postgres
          POSTGRES_USER: postgres

M .github/workflows/test-migrations-two-step.yml => .github/workflows/test-migrations-two-step.yml +9 -1
@@ 23,9 23,17 @@ jobs:
    needs: pre_job
    if: needs.pre_job.outputs.should_skip != 'true'

    strategy:
      fail-fast: false

      matrix:
        postgres:
          - 14-alpine
          - 15-alpine

    services:
      postgres:
        image: postgres:14-alpine
        image: postgres:${{ matrix.postgres}}
        env:
          POSTGRES_PASSWORD: postgres
          POSTGRES_USER: postgres