Skip to content

Commit 9bd3f1f

Browse files
chore(ci): add back build job
This is required by the repo in order to merge into master. Original build job was removed when it was split by feature. Has the same original semantics by dependending on the split jobs.
1 parent 423a20b commit 9bd3f1f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,14 @@ jobs:
130130
- name: Test --features strict
131131
run: timeout 15m cargo test -p interledger-btp --features strict
132132

133+
build:
134+
# Repo requires a `build` job to succeed in order to merge into master.
135+
# A step and runs-on is required for a job to be valid.
136+
needs: [interledger, interledger-packet, interledger-stream, interledger-btp]
137+
runs-on: ubuntu-latest
138+
steps:
139+
- name: Success
140+
run: echo "Success"
133141

134142
settlement-engines:
135143
# This job builds the ethereum-settlement-engine required by `test-md`.

0 commit comments

Comments
 (0)