Skip to content

Commit 0aee134

Browse files
committed
Fix workflows
1 parent 17f061e commit 0aee134

File tree

5 files changed

+13
-0
lines changed

5 files changed

+13
-0
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
branches: [ master ]
77
pull_request:
88
branches: [ master ]
9+
workflow_dispatch:
10+
workflow_call:
911

1012
env:
1113
CARGO_TERM_COLOR: always

.github/workflows/examples.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
branches: [ master ]
1010
pull_request:
1111
branches: [ master ]
12+
workflow_dispatch:
13+
workflow_call:
1214

1315
env:
1416
CARGO_TERM_COLOR: always
@@ -39,6 +41,9 @@ jobs:
3941
- name: serialized_types
4042
run: cargo run --example serialized_types
4143

44+
- name: removing_extensions
45+
run: cargo run --example removing_extensions
46+
4247
- name: runtime_extensions
4348
run: cargo run --example runtime_extensions
4449

.github/workflows/linter.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: [ master ]
66
pull_request:
77
branches: [ master ]
8+
workflow_dispatch:
9+
workflow_call:
810

911
env:
1012
CARGO_TERM_COLOR: always

.github/workflows/op_whitelist.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
branches: [master]
55
pull_request:
66
branches: [master]
7+
workflow_dispatch:
8+
workflow_call:
79

810
env:
911
CARGO_TERM_COLOR: always

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: [ master ]
66
pull_request:
77
branches: [ master ]
8+
workflow_dispatch:
9+
workflow_call:
810

911
env:
1012
CARGO_TERM_COLOR: always

0 commit comments

Comments
 (0)