Skip to content

Commit fb32797

Browse files
authored
Fixing action
1 parent 6f14612 commit fb32797

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
working-directory: ./clearing-house-app
2626
continue-on-error: true
2727
run: |
28+
set +e
29+
2830
cargo fmt --check --message-format human >> cargo_fmt_output.txt
2931
exit_code=$?
3032
@@ -33,8 +35,6 @@ jobs:
3335
cat cargo_fmt_output.txt >> $GITHUB_OUTPUT
3436
echo "EOF" >> $GITHUB_OUTPUT
3537
36-
exit 0
37-
3838
- name: Build
3939
id: build
4040
working-directory: ./clearing-house-app
@@ -49,6 +49,8 @@ jobs:
4949
env:
5050
NO_COLOR: true
5151
run: |
52+
set +e
53+
5254
cargo test &>> cargo_test_output.txt
5355
exit_code=$?
5456
@@ -62,6 +64,8 @@ jobs:
6264
working-directory: ./clearing-house-app
6365
continue-on-error: true
6466
run: |
67+
set +e
68+
6569
cargo clippy >> cargo_clippy_output.txt
6670
exit_code=$?
6771
@@ -119,7 +123,7 @@ jobs:
119123
120124
## Linter report ("cargo clippy"):
121125
122-
Exit code: ${{ steps.linter.outputs.code }}
126+
Exit code: ${{ steps.clippy.outputs.code }}
123127
124128
${linterComment}
125129

0 commit comments

Comments
 (0)