-
-
Notifications
You must be signed in to change notification settings - Fork 1
128 lines (106 loc) · 3.28 KB
/
Copy pathci.yml
File metadata and controls
128 lines (106 loc) · 3.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# workflows/ci.yml
#
# CI
# Run linting and test matrix across supported Python versions.
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Sync dependencies
run: uv sync --extra test --extra dev
- name: Ruff check
run: uv run --extra dev ruff check .
- name: Type check
run: uv run --extra dev mypy paradedb
matrix-tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
services:
paradedb:
image: paradedb/paradedb:0.22.0-pg18
ports:
- 5432:5432
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
options: >-
--health-cmd "pg_isready -U postgres -d postgres"
--health-interval 10s
--health-timeout 5s
--health-retries 12
env:
PARADEDB_TEST_DSN: postgresql+psycopg://postgres:postgres@localhost:5432/postgres
DATABASE_URL: postgresql+psycopg://postgres:postgres@localhost:5432/postgres
PGPASSWORD: postgres
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Sync dependencies
run: uv sync --extra test --extra dev
- name: Install pg client
run: sudo apt-get update && sudo apt-get install -y postgresql-client
- name: Wait for ParadeDB
run: |
for i in {1..30}; do
pg_isready -h localhost -p 5432 -U "$POSTGRES_USER" -d "$POSTGRES_DB" && exit 0
sleep 2
done
echo "ParadeDB did not become ready" >&2
exit 1
- name: Run unit tests
run: uv run --extra test pytest tests/unit
- name: Run integration tests
run: uv run --extra test pytest -m integration
- name: Run examples
run: |
uv run --extra test python examples/quickstart/quickstart.py
uv run --extra test python examples/autocomplete/autocomplete.py
uv run --extra test python examples/more_like_this/more_like_this.py
uv run --extra test python examples/faceted_search/faceted_search.py
uv run --extra test python examples/hybrid_rrf/hybrid_rrf.py
uv run --extra test python examples/rag/rag.py