File tree Expand file tree Collapse file tree 1 file changed +52
-0
lines changed
Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Original file line number Diff line number Diff line change 1+ name : SuperMassive CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+
11+ jobs :
12+ test :
13+ runs-on : ubuntu-latest
14+
15+ steps :
16+ - name : Checkout code
17+ uses : actions/checkout@v2
18+
19+ - name : Set up Go
20+ uses : actions/setup-go@v3
21+ with :
22+ go-version : ' 1.24'
23+
24+ - name : Install dependencies
25+ run : go mod tidy
26+
27+ - name : Run utility tests
28+ run : go test ./utility -v
29+
30+ - name : Run pager tests
31+ run : go test ./storage/pager -v
32+
33+ - name : Run hashtable tests
34+ run : go test ./storage/hashtable -v
35+
36+ - name : Run client network tests
37+ run : go test ./network/client -v
38+
39+ - name : Run server network tests
40+ run : go test ./network/server -v
41+
42+ - name : Run journal tests
43+ run : go test ./journal -v
44+
45+ - name : Run node replica tests
46+ run : go test ./instance/nodereplica -v
47+
48+ - name : Run node primary tests
49+ run : go test ./instance/node -v
50+
51+ - name : Run cluster tests
52+ run : go test ./instance/cluster -v
You can’t perform that action at this time.
0 commit comments