-
-
Notifications
You must be signed in to change notification settings - Fork 1
77 lines (74 loc) · 2.14 KB
/
ci.yml
File metadata and controls
77 lines (74 loc) · 2.14 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
name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
lint-type-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test,dev]
- name: Ruff
run: ruff check .
- name: Mypy
run: mypy paradedb
- name: Unit tests
run: python -m pytest tests/unit
integration:
runs-on: ubuntu-latest
services:
paradedb:
image: paradedb/paradedb:latest
ports:
- 5432:5432
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: postgres
options: >-
--health-cmd "pg_isready -U postgres"
--health-interval 10s
--health-timeout 5s
--health-retries 12
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test,dev]
- name: Install pg client
run: sudo apt-get update && sudo apt-get install -y postgresql-client
- name: Wait for ParadeDB
env:
PGPASSWORD: postgres
run: |
for i in {1..30}; do
pg_isready -h localhost -p 5432 -U postgres && exit 0
sleep 2
done
echo "ParadeDB did not become ready" >&2
exit 1
- name: Integration tests
env:
PARADEDB_TEST_DSN: postgres://postgres:postgres@localhost:5432/postgres
run: python -m pytest -m integration
- name: Run examples
env:
DATABASE_URL: postgresql+psycopg://postgres:postgres@localhost:5432/postgres
run: |
python examples/quickstart.py
python examples/autocomplete.py
python examples/more_like_this.py
python examples/faceted_search.py
python examples/hybrid_rrf.py
python examples/rag.py