File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Run test cases
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ run_test_cases :
7
+ runs-on : ubuntu-latest
8
+
9
+ container :
10
+ image : erlang:22.1
11
+
12
+ steps :
13
+ - uses : actions/checkout@v1
14
+ - name : run test cases
15
+ run : |
16
+ make xref
17
+ make eunit
18
+ make ct
19
+ make cover
20
+ - uses : actions/upload-artifact@v1
21
+ if : always()
22
+ with :
23
+ name : logs
24
+ path : _build/test/logs
25
+ - uses : actions/upload-artifact@v1
26
+ with :
27
+ name : cover
28
+ path : _build/test/cover
29
+
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ eunit: compile
20
20
xref : compile
21
21
$(REBAR ) xref
22
22
23
+ cover :
24
+ $(REBAR ) cover
25
+
23
26
distclean :
24
27
@rm -rf _build
25
28
@rm -f data/app.* .config data/vm.* .args rebar.lock
You can’t perform that action at this time.
0 commit comments