Skip to content

Commit 5aa26f0

Browse files
Add top-level check to GH actions
1 parent 60fc2c7 commit 5aa26f0

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@ env:
1111
CARGO_INCREMENTAL: 0
1212

1313
jobs:
14+
# CAUTION: Do not rename this job. GH expects a job with this name to pass
15+
# before it will allow merging a PR.
16+
required-checks:
17+
needs:
18+
- build
19+
- test-with-sanitizer
20+
steps:
21+
- name: mark the job as a success or failure
22+
run: exit 0
23+
shell: bash
24+
name: Required Checks Passed
25+
runs-on: ubuntu-latest
26+
1427
build:
1528
strategy:
1629
fail-fast: false

0 commit comments

Comments
 (0)