Skip to content

Commit fa29a6a

Browse files
authored
Update mutalk-workflow.yml
1 parent b936266 commit fa29a6a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/mutalk-workflow.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
inputs:
99
mode:
1010
description: 'modes: full (run on all project), diff (run on the last commit diff)'
11-
default: 'diff'
11+
default: 'full'
1212
type: string
1313

1414
jobs:
@@ -34,11 +34,11 @@ jobs:
3434
shell: bash
3535

3636
- name: full mutation testing
37-
if: github.event.inputs.mode == 'full'
37+
if: inputs.mode == 'full'
3838
run: ${{env.SMALLTALK_CI_VM}} ${{env.SMALLTALK_CI_IMAGE}} mutalk --project=${{github.event.repository.name}}
3939

4040
- name: diff mutation testing
41-
if: github.event.inputs.mode == 'diff'
41+
if: inputs.mode == 'diff'
4242
run: ${{env.SMALLTALK_CI_VM}} ${{env.SMALLTALK_CI_IMAGE}} mutalk --project=${{github.event.repository.name}} --diff
4343

4444
- name: Comment PR

0 commit comments

Comments
 (0)