-
Notifications
You must be signed in to change notification settings - Fork 0
154 lines (128 loc) · 3.65 KB
/
tests.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
name: CI
on:
# Run the worflow for all pull requests.
pull_request:
# Only run the workflow for pushes to the default branch.
push:
branches:
- main
# Allow the workflow to be triggered manually from the Actions tab.
workflow_dispatch:
jobs:
# Run style checks.
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- uses: pre-commit/action@v3.0.1
env:
SKIP: no-commit-to-branch
migrations:
runs-on: ubuntu-latest
services:
db:
image: postgres:14.0
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
# This is needed because the postgres container does not provide a
# healthcheck.
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Set up Poetry
shell: bash
run: pip install poetry
- name: Set up cache
uses: actions/cache@v4
id: poetry-cache
with:
path: .venv
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- name: Install dependencies
shell: bash
run: poetry install
- name: Run migrations
shell: bash
env:
DATABASE_HOST: localhost
DATABASE_NAME: postgres
DATABASE_PASSWORD: postgres
DATABASE_PORT: 5432
DATABASE_USER: postgres
run: |
poetry run tox -e migrate
# Reverse all of the migrations. This must be done app by app.
poetry run tox -e migrate accounts zero
# Apply the migrations again just to make sure we cleaned up
# after ourselves properly.
poetry run tox -e migrate
# Run the test suite and type checks.
tox:
name: ${{ matrix.toxenv }}
runs-on: ubuntu-latest
strategy:
matrix:
toxenv:
- types
- unit
services:
db:
image: postgres:14.0
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
# This is needed because the postgres container does not provide a
# healthcheck.
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Set up Poetry
shell: bash
run: pip install poetry
- name: Set up cache
uses: actions/cache@v4
id: poetry-cache
with:
path: .venv
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- name: Install dependencies
shell: bash
run: poetry install
- name: Run ${{ matrix.toxenv }}
shell: bash
env:
DATABASE_HOST: localhost
DATABASE_NAME: postgres
DATABASE_PASSWORD: postgres
DATABASE_PORT: 5432
DATABASE_USER: postgres
run: poetry run tox -e ${{ matrix.toxenv }}