forked from tarampampam/mikrotik-hosts-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
206 lines (169 loc) · 6.09 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
name: tests
on:
push:
branches: [master, main]
paths-ignore: ['**.md']
tags-ignore: ['**']
pull_request:
paths-ignore: ['**.md']
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
gitleaks:
name: Gitleaks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with: {fetch-depth: 0}
- name: Check for GitLeaks
uses: gacts/gitleaks@v1 # Action page: <https://github.com/gacts/gitleaks>
golangci-lint:
name: Golang-CI (lint)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gacts/setup-go-with-cache@v1
- uses: golangci/golangci-lint-action@v4 # Action page: <https://github.com/golangci/golangci-lint-action>
with: {skip-pkg-cache: true, skip-build-cache: true}
go-test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with: {fetch-depth: 2} # Fixes codecov error 'Issue detecting commit SHA'
- uses: gacts/setup-go-with-cache@v1
with: {go-version-file: go.mod}
- run: go test -race -covermode=atomic -coverprofile /tmp/coverage.txt ./...
- name: Upload Coverage report to CodeCov
continue-on-error: true
uses: codecov/codecov-action@v4 # https://github.com/codecov/codecov-action
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: /tmp/coverage.txt
build:
name: Build for ${{ matrix.os }} (${{ matrix.arch }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [linux, windows, darwin] # linux, freebsd, darwin, windows
arch: [amd64] # amd64, 386
include:
- os: linux
arch: 386
- os: windows
arch: 386
needs: [golangci-lint, go-test]
steps:
- uses: actions/checkout@v4
- uses: gacts/setup-go-with-cache@v1
with: {go-version-file: go.mod}
- {uses: gacts/github-slug@v1, id: slug}
- env:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.arch }}
CGO_ENABLED: 0
LDFLAGS: -s -w -X gh.tarampamp.am/mikrotik-hosts-parser/v4/internal/pkg/version.version=${{ steps.slug.outputs.branch-name-slug }}@${{ steps.slug.outputs.commit-hash-short }}
run: go build -trimpath -ldflags "$LDFLAGS" -o /tmp/mikrotik-hosts-parser ./cmd/mikrotik-hosts-parser/
- name: Try to execute
if: matrix.os == 'linux'
run: /tmp/mikrotik-hosts-parser version && /tmp/mikrotik-hosts-parser -h
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: mikrotik-hosts-parser-${{ matrix.os }}-${{ matrix.arch }}
path: /tmp/mikrotik-hosts-parser
if-no-files-found: error
retention-days: 1
e2e:
name: End-to-End tests (cache in ${{ matrix.caching-engine }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
caching-engine: [memory, redis]
needs: [build]
steps:
- uses: actions/checkout@v4
- name: Start redis server
if: matrix.caching-engine == 'redis'
run: docker run --rm -d -p "6379:6379/tcp" redis:7-alpine
- name: Download compiled binary file
uses: actions/download-artifact@v4
with:
name: mikrotik-hosts-parser-linux-amd64
path: .artifact
- name: Prepare binary file to run
working-directory: .artifact
run: mv ./mikrotik-hosts-parser ./../app && chmod +x ./../app
- name: Start HTTP server
run: ./app serve --debug --port 8081 --caching-engine "${{ matrix.caching-engine }}" --redis-dsn "redis://127.0.0.1:6379/0" &
- name: Run Newman
uses: ./.github/actions/newman
with:
baseurl: 'http://127.0.0.1:8081'
docker-image:
name: Build docker image
runs-on: ubuntu-latest
needs: [golangci-lint, go-test]
steps:
- uses: actions/checkout@v4
- {uses: gacts/github-slug@v1, id: slug}
- name: Build image
run: |
docker build \
-t mikrotik-hosts-parser:local \
--build-arg "APP_VERSION=${{ steps.slug.outputs.branch-name-slug }}@${{ steps.slug.outputs.commit-hash-short }}" \
-f ./Dockerfile \
.
- run: docker run --rm mikrotik-hosts-parser:local version
- uses: anchore/scan-action@v3 # action page: <https://github.com/anchore/scan-action>
with:
image: mikrotik-hosts-parser:local
fail-build: false
severity-cutoff: low # negligible, low, medium, high or critical
- name: Save docker image
run: docker save mikrotik-hosts-parser:local > ./docker-image.tar
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: docker-image
path: ./docker-image.tar
retention-days: 1
docker-image-e2e:
name: Docker image End-to-End tests (cache in ${{ matrix.caching-engine }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
caching-engine: [memory, redis]
needs: [docker-image]
steps:
- uses: actions/checkout@v4
- name: Create docker network
run: docker network create "app-network"
- name: Start redis server
if: matrix.caching-engine == 'redis'
run: docker run --rm -d --network "app-network" -p "6379:6379/tcp" --name=redis redis:7-alpine
- name: Download builded docker image
uses: actions/download-artifact@v4
with:
name: docker-image
path: .artifact
- name: Prepare image to run
working-directory: .artifact
run: docker load < docker-image.tar
- name: Run docker image with app
run: |
docker run --rm -d \
--network "app-network" \
-p "8081:8081/tcp" \
-e "CACHING_ENGINE=${{ matrix.caching-engine }}" \
-e "REDIS_DSN=redis://redis:6379/0" \
-e "LISTEN_PORT=8081" \
mikrotik-hosts-parser:local
- name: Run Newman
uses: ./.github/actions/newman
with:
baseurl: 'http://127.0.0.1:8081'