Skip to content

Commit e33ff62

Browse files
committed
run workflows on push to main
1 parent 39e398e commit e33ff62

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

.github/workflows/lint.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Lint
22

3-
on: [ pull_request, workflow_dispatch ]
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
workflow_dispatch:
49

510
jobs:
611
lint:

.github/workflows/test-coverage.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Test Coverage
22

3-
on: [ pull_request, workflow_dispatch ]
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
workflow_dispatch:
49

510
jobs:
611
test:

.github/workflows/tests.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Test all platforms
22

3-
on: [ pull_request, workflow_dispatch ]
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
workflow_dispatch:
49

510
jobs:
611
test:

0 commit comments

Comments
 (0)