-
Notifications
You must be signed in to change notification settings - Fork 1
95 lines (76 loc) · 2.81 KB
/
ci.yaml
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
name: CI
on:
push:
branches: [master]
pull_request: {}
jobs:
verify-types:
name: "Pyright Verify Types"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout repository"
uses: "actions/checkout@v4"
- name: Load cached Poetry installation
id: cached-poetry
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-0
- name: "Install Poetry"
if: steps.cached-poetry.outputs.cache-hit != 'true'
uses: "snok/install-poetry@v1"
- name: "Install Python 3.12"
uses: "actions/setup-python@v5"
with:
python-version: "3.12.1"
cache: "poetry"
- name: "Install project"
run: poetry install --all-extras --no-interaction --no-ansi
- name: "Run Pyright"
run: "poetry run pyright --verifytypes pg_purepy --ignoreexternal"
test-postgresql:
strategy:
fail-fast: false
matrix:
postgres-version: ["16", "15", "14", "13", "12"]
name: "Test on PostgreSQL ${{ matrix.postgres-version }}"
runs-on: ubuntu-latest
services:
postgresql:
image: "postgres:${{ matrix.postgres-version }}"
env:
POSTGRES_USERNAME: "postgres"
POSTGRES_PASSWORD: "postgres"
POSTGRES_DB: "postgres"
ports:
- 5432
steps:
- name: "Checkout repository"
uses: "actions/checkout@v4"
- name: Load cached Poetry installation
id: cached-poetry
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-0
- name: "Install Poetry"
if: steps.cached-poetry.outputs.cache-hit != 'true'
uses: "snok/install-poetry@v1"
- name: "Install Python 3.12"
uses: "actions/setup-python@v5"
with:
python-version: "3.12.1"
cache: "poetry"
- name: "Install project"
run: poetry install --all-extras --no-interaction --no-ansi
- name: "Run Pytest"
run: "poetry run pytest -rPx --cov"
env:
POSTGRES_USERNAME: "postgres"
POSTGRES_PASSWORD: "postgres"
POSTGRES_DATABASE: "postgres"
POSTGRES_PORT: "${{ job.services.postgresql.ports[5432] }}"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"