Skip to content

Commit

Permalink
move github runner from macos-12 to macos-14 (#174)
Browse files Browse the repository at this point in the history
Co-authored-by: Colin Rogers <[email protected]>
  • Loading branch information
mikealfare and colin-rogers-dbt authored Nov 8, 2024
1 parent 8846666 commit 6068aaf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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:
Expand Down

0 comments on commit 6068aaf

Please sign in to comment.