File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 25
25
working-directory : ./clearing-house-app
26
26
continue-on-error : true
27
27
run : |
28
+ set +e
29
+
28
30
cargo fmt --check --message-format human >> cargo_fmt_output.txt
29
31
exit_code=$?
30
32
33
35
cat cargo_fmt_output.txt >> $GITHUB_OUTPUT
34
36
echo "EOF" >> $GITHUB_OUTPUT
35
37
36
- exit 0
37
-
38
38
- name : Build
39
39
id : build
40
40
working-directory : ./clearing-house-app
49
49
env :
50
50
NO_COLOR : true
51
51
run : |
52
+ set +e
53
+
52
54
cargo test &>> cargo_test_output.txt
53
55
exit_code=$?
54
56
62
64
working-directory : ./clearing-house-app
63
65
continue-on-error : true
64
66
run : |
67
+ set +e
68
+
65
69
cargo clippy >> cargo_clippy_output.txt
66
70
exit_code=$?
67
71
@@ -119,7 +123,7 @@ jobs:
119
123
120
124
## Linter report ("cargo clippy"):
121
125
122
- Exit code: ${{ steps.linter .outputs.code }}
126
+ Exit code: ${{ steps.clippy .outputs.code }}
123
127
124
128
${linterComment}
125
129
You can’t perform that action at this time.
0 commit comments