Skip to content

Commit

Permalink
Install PostgreSQL for macOS CI jobs
Browse files Browse the repository at this point in the history
GitHub's Actions runners for macOS stopped bundling PostgreSQL,
so now we have to install it manually.
  • Loading branch information
lpsinger committed May 20, 2024
1 parent 6d3fe87 commit 605233a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install PostgreSQL
if: ${{ runner.os == 'macOS' }}
run: brew install postgresql
- name: Set up Poetry
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 605233a

Please sign in to comment.