-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (40 loc) · 1017 Bytes
/
ci.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
name: CI
on:
push:
branches:
- main
- 'v*'
pull_request: {}
jobs:
test:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.18.x, 1.21.x]
os: [ubuntu-latest]
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432/tcp
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
ENV: test
POSTGRES_USERNAME: postgres
POSTGRES_PASSWORD: postgres
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{matrix.go-version}}
- name: Tests
run: go test -v ./...
env:
POSTGRES_PORT: ${{ job.services.postgres.ports['5432'] }}