diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 0e5f412..304c139 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -147,7 +147,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [ubuntu-22.04, macos-12] + platform: [ubuntu-22.04, macos-14] python-version: ["3.9", "3.12"] steps: - name: "Check out repository" @@ -158,6 +158,11 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: "Install postgresql on MacOS" + if: ${{ matrix.platform == 'macos-14' }} + run: | + brew install postgresql + - name: "Test psycopg2 name - default" run: .github/scripts/psycopg2-check.sh env: