We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34f914c commit 1ae3d0dCopy full SHA for 1ae3d0d
1 file changed
.github/workflows/ci.yml
@@ -1,9 +1,11 @@
1
-name: Run CI
+name: CI
2
on:
3
push:
4
- branches: ["auto"]
+ branches: ["master"]
5
pull_request:
6
branches: ["**"]
7
+ merge_group:
8
+ types: [checks_requested]
9
10
# Allows you to run this workflow manually from the Actions tab
11
workflow_dispatch:
@@ -14,7 +16,7 @@ env:
14
16
15
17
jobs:
18
ci:
- name: Run CI
19
+ name: Build and Test
20
runs-on: ubuntu-latest
21
22
strategy:
@@ -35,8 +37,10 @@ jobs:
35
37
run: |
36
38
cargo build --no-default-features
39
cargo build
- - name: Tests
- run: cargo test --all
40
+ - uses: actions-rs/cargo@v1
41
+ with:
42
+ command: test
43
+ args: --all
44
- name: Build codegen
45
46
cd string-cache-codegen && cargo build && cd ..
@@ -47,7 +51,7 @@ jobs:
47
51
48
52
49
53
build_result:
50
- name: homu build finished
54
+ name: Result
55
56
needs:
57
- "ci"
0 commit comments