-
Notifications
You must be signed in to change notification settings - Fork 216
99 lines (73 loc) · 2.22 KB
/
ci.yml
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
name: CI
on: [pull_request, workflow_dispatch]
permissions:
contents: read
jobs:
build-and-test-extension:
runs-on: ubuntu-latest
strategy:
matrix:
postgres-version: [ 16, 17 ]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip" # caching pip dependencies
- name: Verify Docker installation
run: |
docker --version
docker info
- name: Build Docker image
run: just ext docker-build
env:
PG_MAJOR: ${{ matrix.postgres-version }}
- name: Run Docker container
run: just ext docker-run
- name: Build
run: docker exec pgai-ext just build
- name: Lint SQL and Python
run: docker exec pgai-ext just lint
- name: Check Python Formatting
run: docker exec pgai-ext just format-py
- name: Install extension
run: docker exec pgai-ext just install
- name: Run test server
run: docker exec -d pgai-ext just test-server
- name: Run tests
run: docker exec pgai-ext just test
- name: Stop and remove Docker container
run: |
just ext docker-stop
just ext docker-rm
build-and-test-pgai:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@just
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.29"
enable-cache: true
cache-dependency-glob: "./projects/pgai/uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "./projects/pgai/.python-version"
- name: Install dependencies
working-directory: ./projects/pgai
run: uv sync
- name: Lint
run: just pgai lint
- name: Check Typing
run: just pgai type-check
- name: Check Formatting
run: just pgai format
- name: Run Tests
run: just pgai test
- name: Build the pgai distributable and check artifacts
run: just pgai build