2025-02-09 19:58:08 +01:00
|
|
|
name: pgcli
|
|
|
|
|
|
|
|
on:
|
2025-02-09 20:05:21 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2025-02-09 19:58:08 +01:00
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.rst'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2025-02-09 20:05:21 +01:00
|
|
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
2025-02-09 19:58:08 +01:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:9.6
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
|
|
|
|
steps:
|
2025-02-09 20:05:21 +01:00
|
|
|
- uses: actions/checkout@v4
|
2025-02-09 19:58:08 +01:00
|
|
|
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2025-02-09 20:05:21 +01:00
|
|
|
uses: actions/setup-python@v4
|
2025-02-09 19:58:08 +01:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
2025-02-09 20:01:39 +01:00
|
|
|
- name: Install pgbouncer
|
|
|
|
run: |
|
|
|
|
sudo apt install pgbouncer -y
|
|
|
|
|
|
|
|
sudo chmod 666 /etc/pgbouncer/*.*
|
|
|
|
|
|
|
|
cat <<EOF > /etc/pgbouncer/userlist.txt
|
|
|
|
"postgres" "postgres"
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cat <<EOF > /etc/pgbouncer/pgbouncer.ini
|
|
|
|
[databases]
|
|
|
|
* = host=localhost port=5432
|
|
|
|
[pgbouncer]
|
|
|
|
listen_port = 6432
|
|
|
|
listen_addr = localhost
|
|
|
|
auth_type = trust
|
|
|
|
auth_file = /etc/pgbouncer/userlist.txt
|
|
|
|
logfile = pgbouncer.log
|
|
|
|
pidfile = pgbouncer.pid
|
|
|
|
admin_users = postgres
|
|
|
|
EOF
|
|
|
|
|
|
|
|
sudo systemctl stop pgbouncer
|
|
|
|
|
|
|
|
pgbouncer -d /etc/pgbouncer/pgbouncer.ini
|
|
|
|
|
|
|
|
psql -h localhost -U postgres -p 6432 pgbouncer -c 'show help'
|
|
|
|
|
2025-02-09 20:05:21 +01:00
|
|
|
- name: Install beta version of pendulum
|
|
|
|
run: pip install pendulum==3.0.0b1
|
|
|
|
if: matrix.python-version == '3.12'
|
|
|
|
|
2025-02-09 19:58:08 +01:00
|
|
|
- name: Install requirements
|
|
|
|
run: |
|
|
|
|
pip install -U pip setuptools
|
2025-02-09 20:00:27 +01:00
|
|
|
pip install --no-cache-dir ".[sshtunnel]"
|
2025-02-09 19:58:08 +01:00
|
|
|
pip install -r requirements-dev.txt
|
|
|
|
pip install keyrings.alt>=3.1
|
|
|
|
|
|
|
|
- name: Run unit tests
|
2025-02-09 20:05:21 +01:00
|
|
|
run: coverage run --source pgcli -m pytest
|
2025-02-09 19:58:08 +01:00
|
|
|
|
|
|
|
- name: Run integration tests
|
|
|
|
env:
|
|
|
|
PGUSER: postgres
|
|
|
|
PGPASSWORD: postgres
|
|
|
|
|
|
|
|
run: behave tests/features --no-capture
|
|
|
|
|
|
|
|
- name: Check changelog for ReST compliance
|
|
|
|
run: rst2html.py --halt=warning changelog.rst >/dev/null
|
|
|
|
|
|
|
|
- name: Run Black
|
2025-02-09 20:01:39 +01:00
|
|
|
run: black --check .
|
2025-02-09 20:05:21 +01:00
|
|
|
if: matrix.python-version == '3.8'
|
2025-02-09 19:58:08 +01:00
|
|
|
|
|
|
|
- name: Coverage
|
|
|
|
run: |
|
|
|
|
coverage combine
|
|
|
|
coverage report
|
|
|
|
codecov
|