-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (53 loc) · 1.52 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: QSM
on: [push]
env:
GOPROXY: https://fredsimon.jfrog.io/artifactory/api/go/go
jobs:
qsm:
name: Test
runs-on: ubuntu-latest
container: fredsimon-docker.jfrog.io/golang:1.14
services:
postgres:
image: fredsimon-docker.jfrog.io/postgres:12.3
env:
POSTGRES_DB: qsm
POSTGRES_USER: qsm
POSTGRES_PASSWORD: qsm
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
defaults:
run:
working-directory: backend
env:
DB_HOST: postgres
DB_PORT: 5432
DB_USER: qsm
DB_PASSWORD: qsm
DB_NAME: qsm
SERVER_PORT: 8063
BACKEND_ROOT_URL: "https://qsmgo-92a1656-5f154.eu1.kinto.io/"
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Cache Go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies
run: go mod download
- name: Build backend
run: go build -v .
- name: Test backend packages
run: go test -v ./m3db ./pointdb ./pathdb ./spacedb ./m3server
# TODO: Make sure to update kinto before running this
# - name: Test client with Kinto
# run: go test -v ./clpoint ./clpath
# working-directory: client