-
Notifications
You must be signed in to change notification settings - Fork 4
63 lines (63 loc) · 1.6 KB
/
gha-integration-tests.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
name: Integration tests
run-name: Running integration tests
on: [push]
jobs:
Postgres:
runs-on: ubuntu-latest
container: golang:1.23
services:
postgres:
image: postgis/postgis:16-3.4-alpine
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Run integration test
run: PG_HOST=postgres make postgres-itest
MySQL:
runs-on: ubuntu-latest
container: golang:1.23
services:
mysql:
image: mysql:8.3
env:
MYSQL_ROOT_PASSWORD: mysql
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Run integration test
run: MYSQL_HOST=mysql make mysql-itest
MongoDB:
runs-on: ubuntu-latest
container: golang:1.23
services:
mongo:
image: mongo:7.0
env:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Run integration test
run: MONGO_HOST=mongodb://mongo make mongo-itest