forked from intel/trustauthority-client-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (60 loc) · 2.06 KB
/
Copy pathonpullrequest.yml
File metadata and controls
66 lines (60 loc) · 2.06 KB
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: OnPullRequest
on:
pull_request:
jobs:
build-test-scan:
runs-on: [ ubuntu-20.04 ]
env:
http_proxy: ${{ secrets.HTTP_PROXY }}
https_proxy: ${{ secrets.HTTPS_PROXY }}
no_proxy: ${{ secrets.NO_PROXY }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Style Checker
run: |
gofmt -l .
if [[ $(gofmt -l . | wc -l) -gt 0 ]]; then
echo "Atleast 1 file need formatting"
exit 1
fi
- name: Unit Test Coverage
run: |
test_output=$(cd tdx-cli && make test)
if [ $? -ne 0 ]; then
echo "Unit tests failed for tdx-cli"
exit 1
fi
COVERAGE=$(cd tdx-cli && make test-coverage | grep 'total' | awk '{print $3}' | awk -F. '{print $1}')
echo "Unit test coverage for tdx-cli is - $COVERAGE%"
if [[ $COVERAGE -lt 80 ]]; then
echo "Unit test coverage must be above 80%"
exit 1
fi
test_output=$(cd go-connector && go test ./... -coverprofile=cover.out)
if [ $? -ne 0 ]; then
echo "Unit tests failed for go-connector"
exit 1
fi
COVERAGE=$(echo \"$test_output\" | awk '{print $5}' | awk -F. '{print $1}')
echo "Unit test coverage for go-connector is - $COVERAGE%"
if [[ $COVERAGE -lt 80 ]]; then
echo "Unit test coverage must be above 80%"
exit 1
fi
test_output=$(cd go-tdx && go test ./... --tags=test -coverprofile=cover.out)
if [ $? -ne 0 ]; then
echo "Unit tests failed for go-tdx"
exit 1
fi
COVERAGE=$(echo \"$test_output\" | awk '{print $5}' | awk -F. '{print $1}')
echo "Unit test coverage for go-tdx is - $COVERAGE%"
if [[ $COVERAGE -lt 80 ]]; then
echo "Unit test coverage must be above 80%"
exit 1
fi