Skip to content

Commit 0be3272

Browse files
committed
Ensure all workflows run on pull requests
1 parent e4dcbbc commit 0be3272

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Lint
2-
3-
on: [push]
2+
on:
3+
push:
4+
pull_request:
45

56
jobs:
67
check-formatting:

.github/workflows/release-cli.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name: Release CLI
2-
32
on:
43
push:
54
pull_request:

.github/workflows/release-libs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name: Build and Release Libs
2-
32
on:
43
push:
54
pull_request:

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Test
2-
on: [push]
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
36

47
jobs:
58
test:

0 commit comments

Comments
 (0)