-
-
Notifications
You must be signed in to change notification settings - Fork 50
91 lines (89 loc) · 2.65 KB
/
test.yaml
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
name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
GOPATH: /home/runner/go
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.22.7
- name: Setup Golang caches
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum', '**/work.sum') }}
restore-keys: |
${{ runner.os }}-golang-
- name: Build check
run: make binaries
test:
runs-on: ubuntu-latest
env:
GOPATH: /home/runner/go
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.22.7
- name: Setup Golang caches
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/.cache/golangci-lint
~/go/pkg/mod
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum', '**/work.sum') }}
restore-keys: |
${{ runner.os }}-golang-
- name: Linting check
run: make lint
- name: Generate Sources
run: make generate-sources
- name: Check generated sources
run: |
git add .
git diff --cached --quiet
- name: Run Gosec Security Scanner
run: make sec
- name: Run Tests
run: make test-coverage
- name: Check Dependency Licenses
run: make license-check
# Upload coverage report if for core
- name: Upload Coverage Report Core
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./core/all.coverprofile
flags: core # optional
- name: Upload Coverage Report AWS
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./cloud/aws/all.coverprofile
flags: aws # optional
- name: Upload Coverage Report GCP
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./cloud/gcp/all.coverprofile
flags: gcp # optional
- name: Upload Coverage Report Azure
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./cloud/azure/all.coverprofile
flags: azure # optional