From 0fa882c0bc7829c16f0d6683910847e973fc4ce0 Mon Sep 17 00:00:00 2001 From: funilrys Date: Sun, 27 Oct 2024 00:32:45 +0200 Subject: [PATCH] ci: macos - add homebrew and psql. --- .github/workflows/dev.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 98296b78..7d57ae29 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -99,6 +99,15 @@ jobs: - uses: actions/checkout@v4 name: Clone repository + - name: Set up Homebrew + uses: Homebrew/actions/setup-homebrew@master + if: matrix.os == 'macos-latest' + + - name: Install PostgreSQL + run: | + brew install postgresql + if: matrix.os == 'macos-latest' + - name: Set up Python ${{ matrix.python_version }} uses: actions/setup-python@v5 with: