-
Notifications
You must be signed in to change notification settings - Fork 34
103 lines (93 loc) · 2.45 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
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
name: Go
on:
push:
branches:
- master
pull_request:
jobs:
# lint:
# strategy:
# matrix:
# go: [ 1.20.2 ]
#
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
#
# - name: Set up Go
# uses: actions/setup-go@v4
# with:
# go-version: ${{ matrix.go }}
#
# - uses: actions/cache@v2
# with:
# path: |
# ~/go/pkg/mod
# key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
# restore-keys: |
# ${{ runner.os }}-go-
#
# - name: Verify go version
# run: go version
#
# - name: Run linters
# uses: golangci/[email protected]
# with:
# version: v1.52.1
test:
strategy:
matrix:
go: [ 1.21.0]
grafana: [ 9.4.3, 10.0.0 ]
chromedp: [ 112.0.5615.39 ]
env:
GRAFANA_INTEGRATION: 1
services:
minio:
image: bitnami/minio:latest
ports:
- 9000:9000
- 9001:9001
options: >-
-e GF_AUTH_ANONYMOUS_ENABLED=true -e MINIO_ROOT_USER="test" -e MINIO_ROOT_PASSWORD="secretsss"
grafana:
# Docker Hub image
image: "grafana/grafana:${{ matrix.grafana }}"
ports:
- 3000:3000
options: >-
-e GF_AUTH_ANONYMOUS_ENABLED=true
chromedp:
image: "chromedp/headless-shell:${{ matrix.chromedp }}"
ports:
- 9222:9222
options: >-
--shm-size 2G
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Verify go version
run: go version
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Wait for Minio to come up.
run: nc -z -v -w15 127.0.0.1 9000
- name: Calc coverage
if: "${{ matrix.go == '1.21.0' && matrix.grafana == '9.4.3' }}"
run: |
go test -v -covermode=atomic -coverprofile=coverage.out ./...
- name: Convert coverage.out to coverage.lcov
if: "${{ matrix.go == '1.21.0' && matrix.grafana == '9.4.3' }}"
uses: jandelgado/[email protected]
- name: Test
if: "${{ matrix.grafana != '9.4.3' }}"
run: go test -v ./...