Skip to content

Commit dedbe34

Browse files
committed
Allow workflow dispatch for all jobs
1 parent d6a4486 commit dedbe34

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Run CI tests
22
on:
33
push:
44
pull_request:
5+
workflow_dispatch:
56
schedule:
67
- cron: '0 0 * * 2'
78
jobs:

.github/workflows/coverage.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Run coverage tests
2-
on:
3-
workflow_call:
2+
on: [workflow_dispatch, workflow_call]
43
jobs:
54
coverage:
65
runs-on: ${{ matrix.os }}

.github/workflows/linter.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Run pre-commit
2-
on:
3-
workflow_call:
2+
on: [workflow_dispatch, workflow_call]
43
jobs:
54
linter:
65
runs-on: ubuntu-24.04

.github/workflows/os.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Run tests on different OS
2-
on:
3-
workflow_call:
2+
on: [workflow_dispatch, workflow_call]
43
jobs:
54
os:
65
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)