Skip to content

Test Mac

Test Mac #98

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-15]
steps:
- uses: actions/checkout@v4
- uses: ./.
with:
config: |
shared_preload_libraries = 'pg_stat_statements'
database: testdb
- run: createdb testdb2
- run: psql -d testdb -c 'SHOW server_version'
- run: psql -d testdb -h localhost -c 'SHOW server_version'
- run: psql --version
- run: pg_config