File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+ name : CPP
13
+ env :
14
+ CPLUS_INCLUDE_PATH : " /usr/local/include/:/usr/include/jsoncpp/:/usr/local/opt/openssl/include/:/usr/lib/"
15
+ steps :
16
+ - uses : actions/checkout@v3
17
+ - run : sudo apt-get install lcov libcurl4-openssl-dev libssl-dev uuid-dev libjson-c-dev libjsoncpp-dev nodejs npm
18
+ - run : bash ./unit_test.sh
19
+ - run : bash ./generate_code_cov.sh
20
+ - run : bash ./function_test.sh
21
+ - run : bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change @@ -14,3 +14,4 @@ test/httpserver/nohup.out
14
14
.idea
15
15
build /
16
16
cmake-build-debug /
17
+ .DS_Store
You can’t perform that action at this time.
0 commit comments