-
Notifications
You must be signed in to change notification settings - Fork 882
145 lines (114 loc) · 3.26 KB
/
tests.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
name: Tests
on:
pull_request:
push:
branches:
- master
- "v*"
jobs:
test-stuff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker
uses: docker/setup-buildx-action@v3
- name: Set up Docker Compose
run: sudo apt-get install docker-compose
# need to do this before we start the services as they need the TLS creds
- name: Create test certs for TLS
run: |
make test-certs
chmod 777 ./contrib/tls/*
- name: Start services
run: docker-compose up -d
working-directory: ./
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Install Dependencies
run: go mod tidy
- name: Docker logs
run: |
echo "${{ toJson(job) }}"
docker logs "redis_exporter_redis7-tls_1"
docker logs "redis_exporter_valkey8-tls_1"
- name: Run tests
env:
LOG_LEVEL: "info"
run: |
sleep 15
make checks
make test
- name: Run tests - valkey 8
env:
LOG_LEVEL: "info"
TEST_REDIS_URI: "redis://localhost:16382"
TEST_VALKEY8_TLS_URI: "valkeys://localhost:16386"
TEST_PWD_REDIS_URI: "redis://:redis-password@localhost:16380"
run: |
go test -v -race -p 1 ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
files: ./coverage.txt
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@v2
with:
file: coverage.txt
- name: Stop services
run: docker-compose down
working-directory: ./
lint-stuff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Install Dependencies
run: go mod tidy
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60
args: "--tests=false"
build-stuff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Install Dependencies
run: go mod tidy
- name: Build some binaries
run: make build-some-amd64-binaries
- name: Generate mixin
run: make mixin
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Test Docker Image Build - Alpine
uses: docker/build-push-action@v6
with:
push: false
target: alpine
tags: user/app:tst
file: Dockerfile
build-args: "GOARCH=amd64"
- name: Test Docker Image Build - Scratch
uses: docker/build-push-action@v6
with:
push: false
target: scratch-release
tags: user/app:tst
file: Dockerfile
build-args: "GOARCH=amd64"