ci: install postgresql-client for pg_isready command

- Add postgresql-client to system dependencies
- Fixes 'pg_isready: command not found' error in CI
- Required for database readiness check before tests
This commit is contained in:
Graham McIntire 2026-03-05 10:20:55 -06:00
parent 64d20f8adc
commit bda0c703d2
No known key found for this signature in database

View file

@ -51,7 +51,7 @@ jobs:
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libsnmp-dev snmp-mibs-downloader
sudo apt-get install -y libsnmp-dev snmp-mibs-downloader postgresql-client
- name: Cache Mix dependencies
uses: actions/cache@v4