-
Notifications
You must be signed in to change notification settings - Fork 7
66 lines (50 loc) · 1.65 KB
/
main.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
---
name: Validate
on:
- push
- pull_request
permissions:
contents: read
jobs:
validate:
runs-on: "ubuntu-latest"
container: golang:1.19
steps:
- uses: "actions/checkout@v4"
with:
submodules: recursive
- name: "Set git safe directory"
run: git config --system --add safe.directory $GITHUB_WORKSPACE
- name: Install package dependencies
run: |
apt-get update
apt-get install -y python3-venv python3-pip
python3 -m venv .venv
.venv/bin/pip install yamllint
- name: Install golang tools
run: make install-go-tools
- name: Install service dependencies
run: go get ./...
- name: Checking missed 'make generate-api'
run: make generate-api && git diff --exit-code internal/api/public/
- name: Checking missed 'make generate-mock'
run: make generate-mock && git diff --exit-code internal/test/mock/
- name: Checking missed 'go fmt'
run: make go-fmt && git diff --exit-code .
- name: Checking yaml files
run: .venv/bin/python3 -m yamllint .
- name: Run go vet
run: go vet $(go list ./... | grep -v /vendor/)
- name: Run tests
run: make test
- name: Process coverage report
run: |
go get github.com/boumenot/gocover-cobertura
go run github.com/boumenot/gocover-cobertura < coverage.out > coverage.xml
go tool cover -func ./coverage.out
- name: Upload coverage report
uses: "actions/upload-artifact@v3"
with:
path: coverage.xml
- name: Build executables
run: make build