-
Notifications
You must be signed in to change notification settings - Fork 3
167 lines (128 loc) · 4.22 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
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
155
156
157
158
159
160
161
162
163
164
165
166
167
name: CI
on:
push:
branches:
- master
pull_request:
env:
# Database to connect to that can create other databases with `CREATE DATABASE`.
ADMIN_DATABASE_URL: postgres://postgres:postgres@localhost:5432
# A suitable name/URL for non-test database.
DATABASE_NAME: river_dev
DATABASE_URL: postgres://postgres:postgres@127.0.0.1:5432/river_dev
# Test database.
TEST_DATABASE_NAME: river_test
TEST_DATABASE_URL: postgres://postgres:postgres@127.0.0.1:5432/river_test
jobs:
build_and_test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 2s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rye
uses: eifinger/setup-rye@v3
# Needed for River's CLI. There is a version of Go on Actions' base image,
# but it's old and can't read modern `go.mod` annotations correctly.
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "stable"
check-latest: true
- name: Rye sync
run: rye sync
- name: Build
run: rye build
- name: Install River CLI
run: go install github.com/riverqueue/river/cmd/river@latest
- name: Create database
run: psql --echo-errors --quiet -c '\timing off' -c "CREATE DATABASE ${TEST_DATABASE_NAME};" ${ADMIN_DATABASE_URL}
- name: river migrate-up
run: river migrate-up --database-url "$TEST_DATABASE_URL" --max-steps 5 # temporarily include max steps so tests can pass with unique fixes
- name: Test
run: rye test
examples_run:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 2s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rye
uses: eifinger/setup-rye@v3
# Needed for River's CLI. There is a version of Go on Actions' base image,
# but it's old and can't read modern `go.mod` annotations correctly.
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "stable"
check-latest: true
- name: Rye sync
run: rye sync
- name: Install River CLI
run: go install github.com/riverqueue/river/cmd/river@latest
- name: Create database
run: psql --echo-errors --quiet -c '\timing off' -c "CREATE DATABASE ${DATABASE_NAME};" ${ADMIN_DATABASE_URL}
- name: river migrate-up
run: river migrate-up --database-url "$DATABASE_URL" --max-steps 5 # temporarily include max steps so tests can pass with unique fixes
- name: Run examples
run: rye run python3 -m examples.all
format_lint_and_type_check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rye
uses: eifinger/setup-rye@v3
- name: Rye sync
run: rye sync
- name: Format check
run: rye fmt --check
- name: Lint
run: rye lint
- name: Type check
run: make type-check
sqlc_generates:
runs-on: ubuntu-latest
timeout-minutes: 2
env:
BIN_PATH: /home/runner/bin
SQLC_VERSION: 1.27.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create BIN_PATH and add to PATH
run: |
mkdir -p "$BIN_PATH"
echo "$BIN_PATH" >> $GITHUB_PATH
- name: Install sqlc
run: |
curl -L https://github.com/kyleconroy/sqlc/releases/download/v${{ env.SQLC_VERSION }}/sqlc_${{ env.SQLC_VERSION }}_linux_amd64.tar.gz | tar -xz -C $BIN_PATH
chmod +x $BIN_PATH/sqlc
- name: Generate sqlc
run: make generate/sqlc
- name: Run sqlc diff
run: |
echo "Please make sure that all sqlc changes are checked in!"
git diff --exit-code