@@ -19,11 +19,71 @@ jobs:
19
19
java-version : ' 11'
20
20
distribution : ' adopt'
21
21
22
+ - name : Run hmda-platform Tests
23
+ run : |
24
+ sbt "project hmda-platform" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
25
+ continue-on-error : true
26
+
27
+ - name : Run check-digit Tests
28
+ run : |
29
+ sbt "project check-digit" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
30
+ continue-on-error : true
31
+
32
+ - name : Run common Tests
33
+ run : |
34
+ sbt "project common" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
35
+ continue-on-error : true
36
+
37
+ - name : Run data-browser Tests
38
+ run : |
39
+ sbt "project data-browser" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
40
+ continue-on-error : true
41
+
42
+ - name : Run hmda-analytics Tests
43
+ run : |
44
+ sbt "project hmda-analytics" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
45
+ continue-on-error : true
46
+
47
+ - name : Run hmda-data-publisher Tests
48
+ run : |
49
+ sbt "project hmda-data-publisher" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
50
+ continue-on-error : true
51
+
52
+ - name : Run hmda-quarterly-data-service Tests
53
+ run : |
54
+ sbt "project hmda-quarterly-data-service" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
55
+ continue-on-error : true
56
+
57
+ - name : Run hmda-reporting Tests
58
+ run : |
59
+ sbt "project hmda-reporting" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
60
+ continue-on-error : true
61
+
62
+ - name : Run institutions-api Tests
63
+ run : |
64
+ sbt "project institutions-api" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
65
+ continue-on-error : true
66
+
22
67
- name : Run modified-lar Tests
23
68
run : |
24
69
sbt "project modified-lar" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
25
70
continue-on-error : true
26
71
72
+ - name : Run rate-limit Tests
73
+ run : |
74
+ sbt "project rate-limit" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
75
+ continue-on-error : true
76
+
77
+ - name : Run ratespread-calculator Tests
78
+ run : |
79
+ sbt "project ratespread-calculator" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
80
+ continue-on-error : true
81
+
82
+ - name : Run submission-errors Tests
83
+ run : |
84
+ sbt "project submission-errors" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
85
+ continue-on-error : true
86
+
27
87
- name : Check Test Results
28
88
run : |
29
89
if [ $(cat log-file | grep -E "TEST FAILED|TESTS FAILED|Failed tests" | wc -l) -gt 0 ]; then
0 commit comments