forked from ark-network/ark
-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·88 lines (81 loc) · 2.03 KB
/
ark.unit.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
name: ci_unit
on:
push:
branches:
- master
paths:
- 'server/**'
- 'pkg/client-sdk/**'
pull_request:
branches:
- master
paths:
- 'server/**'
- 'pkg/client-sdk/**'
jobs:
check-go-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '>=1.23.1'
- name: Run go work sync
run: go work sync
- name: Check for changes
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "Changes detected after running go work sync and go mod tidy"
git diff
exit 1
fi
test-server:
name: server unit tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
steps:
- uses: actions/setup-go@v4
with:
go-version: '>=1.23.1'
- uses: actions/checkout@v3
- name: check linting
uses: golangci/golangci-lint-action@v6
with:
version: v1.61
working-directory: ./server
args: --timeout 5m
- name: check code integrity
uses: securego/gosec@master
with:
args: '-severity high -quiet -exclude=G115 ./...'
- name: Run go work sync
run: go work sync
- name: unit testing
run: make test
test-sdk:
name: sdk unit tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./pkg/client-sdk
steps:
- uses: actions/setup-go@v4
with:
go-version: '>=1.23.1'
- uses: actions/checkout@v3
- name: check linting
uses: golangci/golangci-lint-action@v6
with:
version: v1.61
working-directory: ./pkg/client-sdk
args: --timeout 5m
- name: check code integrity
uses: securego/gosec@master
with:
args: '-severity high -quiet -exclude=G115 ./...'
- run: go get -v -t -d ./...
- name: unit testing
run: make test