Prepare for v0.36 release #134
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-macos | |
on: push | |
jobs: | |
runner-job: | |
# using the PostgreSQL version pre-installed on GitHub's MacOS virtual images | |
runs-on: macos-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Set up pre-installed PostgreSQL | |
uses: ikalnytskyi/action-setup-postgres@v6 | |
with: | |
username: pgeltestuser | |
password: pgeltest | |
database: pgeltestdb | |
id: postgres | |
- name: Install Emacs | |
uses: purcell/setup-emacs@master | |
with: | |
version: 29.3 | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Run connection tests over network | |
run: make -C test test |