Skip to content

Commit 1ae3d0d

Browse files
authored
Enable the GitHub merge queue (#280)
1 parent 34f914c commit 1ae3d0d

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
name: Run CI
1+
name: CI
22
on:
33
push:
4-
branches: ["auto"]
4+
branches: ["master"]
55
pull_request:
66
branches: ["**"]
7+
merge_group:
8+
types: [checks_requested]
79

810
# Allows you to run this workflow manually from the Actions tab
911
workflow_dispatch:
@@ -14,7 +16,7 @@ env:
1416

1517
jobs:
1618
ci:
17-
name: Run CI
19+
name: Build and Test
1820
runs-on: ubuntu-latest
1921

2022
strategy:
@@ -35,8 +37,10 @@ jobs:
3537
run: |
3638
cargo build --no-default-features
3739
cargo build
38-
- name: Tests
39-
run: cargo test --all
40+
- uses: actions-rs/cargo@v1
41+
with:
42+
command: test
43+
args: --all
4044
- name: Build codegen
4145
run: |
4246
cd string-cache-codegen && cargo build && cd ..
@@ -47,7 +51,7 @@ jobs:
4751
4852
4953
build_result:
50-
name: homu build finished
54+
name: Result
5155
runs-on: ubuntu-latest
5256
needs:
5357
- "ci"

0 commit comments

Comments
 (0)