-
-
Notifications
You must be signed in to change notification settings - Fork 7
105 lines (88 loc) · 2.71 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
96
97
98
99
100
101
102
103
104
105
name: build
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
- CHANGELOG.md
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
- CHANGELOG.md
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
strategy:
max-parallel: 4
matrix:
python-version: ["3.12"]
postgres-version: ["15"]
database-url: ["postgresql://postgres:postgres@localhost:5432/postgres"]
services:
postgres:
image: postgres:${{ matrix.postgres-version }}
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
--name postgres
ports:
- 5432:5432
env:
PGHOST: localhost
PGUSER: postgres
PGDATABASE: postgres
PGPASSWORD: postgres
steps:
- name: Install postgresql-client
run: |
sudo apt-get update
sudo apt-get install --yes postgresql-client
- name: Connect to PostgreSQL with CLI
run: psql -c 'SELECT VERSION();'
- name: Show PostgreSQL config file
run: psql -c 'SHOW config_file;'
- name: Alter max connections
run: |
docker exec -i postgres bash << EOF
sed -i -e 's/max_connections = 100/max_connections = 1000/' /var/lib/postgresql/data/postgresql.conf
sed -i -e 's/shared_buffers = 128MB/shared_buffers = 2GB/' /var/lib/postgresql/data/postgresql.conf
EOF
docker restart --time 0 postgres
sleep 5
- name: Show max connections
run: psql -c 'SHOW max_connections;'
- name: Checkout Source
uses: actions/checkout@v3
- name: Install Poetry
id: install-poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install Packages
run: poetry install
- name: Run Tests
run: poetry run pytest -n auto -vv --cov --cov-report=html --cov-report=xml
env:
DATABASE_URL: ${{ matrix.database-url }}
- name: Send Reports to Codecov
uses: codecov/codecov-action@v4
env:
PYTHON: ${{ matrix.python-version }}
POSTGRES: ${{ matrix.postgres-version }}
DB_URL: ${{ matrix.database-url }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
env_vars: PYTHON,POSTGRES,DB_URL