Skip to content

Commit 9effb78

Browse files
authored
Enable merge queue (#616)
* Enable merge queue * ensure msrv and semver checks pass
1 parent 69c3c11 commit 9effb78

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ name: Rust
22

33
on:
44
push:
5-
branches: ["**"]
5+
branches: [master]
66
pull_request:
77
branches: ["**"]
8+
merge_group:
9+
types: [checks_requested]
810

911
env:
1012
CARGO_TERM_COLOR: always
@@ -39,10 +41,12 @@ jobs:
3941
- name: Run tests
4042
run: cargo test --verbose
4143
build_result:
42-
name: homu build finished
44+
name: Result
4345
runs-on: ubuntu-latest
4446
needs:
4547
- "build"
48+
- "msrv"
49+
- "semver"
4650
steps:
4751
- name: Mark the job as successful
4852
run: exit 0

0 commit comments

Comments
 (0)