From 6068aaf6bb39d3491c25a6d8054ab0e79a931c35 Mon Sep 17 00:00:00 2001 From: Mike Alfare <13974384+mikealfare@users.noreply.github.com> Date: Fri, 8 Nov 2024 16:32:57 -0500 Subject: [PATCH] move github runner from macos-12 to macos-14 (#174) Co-authored-by: Colin Rogers <111200756+colin-rogers-dbt@users.noreply.github.com> --- .github/workflows/integration-tests.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 88e601f..9ce4298 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -106,7 +106,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [ubuntu-22.04, macos-12] + platform: [ubuntu-22.04, macos-14] python-version: ["3.9", "3.11"] steps: - name: "Check out repository" @@ -117,6 +117,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: