58
58
59
59
- name : count for loops
60
60
working-directory : ./${{ matrix.project }}
61
+ continue-on-error : true
61
62
shell : bash
62
63
run : |
63
64
while read -r file; do
@@ -66,12 +67,11 @@ jobs:
66
67
echo "Count in file: $for_loop_count_in_file"
67
68
((for_loop_count += for_loop_count_in_file))
68
69
done < <(find . -type f -name '*.rs')
69
-
70
- # Print results
71
70
echo "for loop occurrences: $for_loop_count"
72
71
73
72
- name : count iterator methods
74
73
working-directory : ./${{ matrix.project }}
74
+ continue-on-error : true
75
75
shell : bash
76
76
run : |
77
77
# Initialize counters
@@ -114,6 +114,7 @@ jobs:
114
114
115
115
- name : count for loops after tool
116
116
working-directory : ./${{ matrix.project }}
117
+ continue-on-error : true
117
118
shell : bash
118
119
run : |
119
120
while read -r file; do
@@ -122,12 +123,11 @@ jobs:
122
123
echo "Count in file: $for_loop_count_in_file"
123
124
((for_loop_count += for_loop_count_in_file))
124
125
done < <(find . -type f -name '*.rs')
125
-
126
- # Print results
127
126
echo "for loop occurrences: $for_loop_count"
128
127
129
128
- name : count iterator methods after tool
130
129
working-directory : ./${{ matrix.project }}
130
+ continue-on-error : true
131
131
shell : bash
132
132
run : |
133
133
# Initialize counters
@@ -156,6 +156,7 @@ jobs:
156
156
157
157
- name : par iter count
158
158
working-directory : ./${{ matrix.project }}
159
+ continue-on-error : true
159
160
shell : bash
160
161
run : |
161
162
# Initialize counters
0 commit comments