Skip to content

Commit 040b94b

Browse files
committed
workflow dispatch should run everything
1 parent df38540 commit 040b94b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-ruby.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ permissions:
1919
jobs:
2020
docs:
2121
name: Documentation
22-
if: ${{ inputs.run-full-suite }}
22+
if: ${{ github.event_name == 'workflow_dispatch' || inputs.run-full-suite }}
2323
uses: ./.github/workflows/bazel.yml
2424
with:
2525
name: Documentation
2626
run: bazel run //rb:docs
2727

2828
steep-check:
2929
name: Type Check (Steep)
30-
if: ${{ inputs.run-full-suite }}
30+
if: ${{ github.event_name == 'workflow_dispatch' || inputs.run-full-suite }}
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout code
@@ -49,7 +49,7 @@ jobs:
4949

5050
unit-tests:
5151
name: Unit Tests
52-
if: ${{ inputs.run-full-suite }}
52+
if: ${{ github.event_name == 'workflow_dispatch' || inputs.run-full-suite }}
5353
uses: ./.github/workflows/bazel.yml
5454
strategy:
5555
fail-fast: false

0 commit comments

Comments
 (0)