Skip to content

Commit 18f4dd6

Browse files
committed
restoring all module tests
1 parent 70b290c commit 18f4dd6

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

.github/workflows/unit-test.yml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,71 @@ jobs:
1919
java-version: '11'
2020
distribution: 'adopt'
2121

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+
2267
- name: Run modified-lar Tests
2368
run: |
2469
sbt "project modified-lar" "testOnly -- -l actions-ignore" 2>&1 | tee -a log-file
2570
continue-on-error: true
2671

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+
2787
- name: Check Test Results
2888
run: |
2989
if [ $(cat log-file | grep -E "TEST FAILED|TESTS FAILED|Failed tests" | wc -l) -gt 0 ]; then

0 commit comments

Comments
 (0)