We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 510dee7 + 6fd93bd commit 7685acbCopy full SHA for 7685acb
.github/workflows/ci.yml
@@ -17,6 +17,7 @@ jobs:
17
- ubuntu-latest
18
- windows-latest
19
- macos-latest
20
+ - macos-13
21
steps:
22
- uses: actions/checkout@v4
23
action.yml
@@ -38,6 +38,14 @@ runs:
38
elif [ "$RUNNER_OS" == "Windows" ]; then
39
echo "$PGBIN" >> $GITHUB_PATH
40
echo "PQ_LIB_DIR=$PGROOT\lib" >> $GITHUB_ENV
41
+ elif [ "$RUNNER_OS" == "macOS" ]; then
42
+ case "$(sw_vers -productVersion)" in
43
+ 13.*)
44
+ # Unfortunately, the macOS 13 runner image doesn't come w/
45
+ # pre-installed PostgreSQL server.
46
+ brew install postgresql@14
47
+ ;;
48
+ esac
49
fi
50
shell: bash
51
0 commit comments