-
Notifications
You must be signed in to change notification settings - Fork 145
78 lines (65 loc) · 1.85 KB
/
unit_test.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
name: unittest
on:
pull_request:
branches: '**'
env:
GO111MODULE: on
jobs:
test:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ^1.18
id: go
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: make platon
- name: Test
run: go test -tags=test -covermode=atomic -coverprofile=coverage.txt `go list ./...`
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
file: ./coverage.txt
flags: unittests
name: codecov-umbrella
- name: Archive code coverage results
if: github.event.pull_request.head.repo.fork == false
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: coverage.txt
sonarCloudTrigger:
name: SonarCloud Trigger
if: github.event.pull_request.head.repo.fork == false
needs: test
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@master
- name: Download code coverage results
uses: actions/download-artifact@v3
with:
name: code-coverage-report
path: coverage.txt
- name: Analyze with SonarCloud
uses: sonarsource/sonarcloud-github-action@master
with:
args: -X
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}