diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-11-01 04:38:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-11-01 04:38:10 +0000 |
commit | 6ad5e5b3d0d0029af2401594ecc398fcb6bc9ff5 (patch) | |
tree | 4a648e2fca058a515ad4dfe12302bb9d41ca1c7d /.github/workflows/ci.yml | |
parent | Releasing debian version 3.5.0-5. (diff) | |
download | pgcli-6ad5e5b3d0d0029af2401594ecc398fcb6bc9ff5.tar.xz pgcli-6ad5e5b3d0d0029af2401594ecc398fcb6bc9ff5.zip |
Merging upstream version 4.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5b33bd..68a69ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,9 @@ name: pgcli on: + push: + branches: + - main pull_request: paths-ignore: - '**.rst' @@ -11,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] services: postgres: @@ -28,10 +31,10 @@ jobs: --health-retries 5 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} @@ -64,6 +67,10 @@ jobs: psql -h localhost -U postgres -p 6432 pgbouncer -c 'show help' + - name: Install beta version of pendulum + run: pip install pendulum==3.0.0b1 + if: matrix.python-version == '3.12' + - name: Install requirements run: | pip install -U pip setuptools @@ -72,7 +79,7 @@ jobs: pip install keyrings.alt>=3.1 - name: Run unit tests - run: coverage run --source pgcli -m py.test + run: coverage run --source pgcli -m pytest - name: Run integration tests env: @@ -86,7 +93,7 @@ jobs: - name: Run Black run: black --check . - if: matrix.python-version == '3.7' + if: matrix.python-version == '3.8' - name: Coverage run: | |