Skip to content

Commit 0806c6f

Browse files
authored
Add homu result.
1 parent 2f87edd commit 0806c6f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,18 @@ jobs:
4444
if [ ${{ matrix.rust }} = nightly ]; then
4545
cd integration-tests && cargo test --features unstable && cd ..;
4646
fi
47+
48+
49+
build_result:
50+
name: homu build finished
51+
runs-on: ubuntu-latest
52+
needs:
53+
- "ci"
54+
55+
steps:
56+
- name: Mark the job as successful
57+
run: exit 0
58+
if: success()
59+
- name: Mark the job as unsuccessful
60+
run: exit 1
61+
if: "!success()"

0 commit comments

Comments
 (0)