Skip to content

Commit

Permalink
move github runner from macos-12 to macos-14 (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-rogers-dbt authored Nov 5, 2024
1 parent 4555e5d commit ae48e67
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 @@ -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"
Expand All @@ -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:
Expand Down

0 comments on commit ae48e67

Please sign in to comment.