-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (40 loc) · 997 Bytes
/
go.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: Go
on: push
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
env:
POSTGRES_USER: test
POSTGRES_PASSWORD: test
POSTGRES_DB: postgres
image: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Cache go deps
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashfiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
env:
GOFLAGS: -mod=mod
- name: Build
run: go build -v ./...
- name: Test
env:
POSTGRES_URL: postgres://test:test@localhost:5432/postgres?sslmode=disable
run: go test -v -cover -p 1 ./...