Skip to content

Commit

Permalink
Move Python package into 'python' subdir
Browse files Browse the repository at this point in the history
  • Loading branch information
malthe committed Feb 2, 2024
1 parent d519d55 commit 4f63f2d
Show file tree
Hide file tree
Showing 38 changed files with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
name: PQ
name: ci

# PostgreSQL support taken from:
# https://github.com/actions/example-services/blob/master/.github/workflows/postgres-service.yml

on: [push, pull_request]

jobs:
ci:
python:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [ '3.x', 'pypy3' ]
postgres-version: [ '9', 'latest' ]

python-version:
- "3.9"
- "pypy-3.9"
postgres-version:
- "9"
- "latest"
services:
postgres:
image: postgres:${{ matrix.postgres-version }}
Expand All @@ -29,10 +32,12 @@ jobs:

steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip setuptools wheel && python setup.py test
- run: |
cd python
python -m pip install --upgrade pip setuptools wheel && python setup.py test
env:
PQ_TEST_DB_PORT: ${{ job.services.postgres.ports[5432] }}
PQ_TEST_DB_HOST: localhost
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 4f63f2d

Please sign in to comment.