Commit fa29a6a 1 parent b936266 commit fa29a6a Copy full SHA for fa29a6a
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
inputs :
9
9
mode :
10
10
description : ' modes: full (run on all project), diff (run on the last commit diff)'
11
- default : ' diff '
11
+ default : ' full '
12
12
type : string
13
13
14
14
jobs :
@@ -34,11 +34,11 @@ jobs:
34
34
shell : bash
35
35
36
36
- name : full mutation testing
37
- if : github.event. inputs.mode == 'full'
37
+ if : inputs.mode == 'full'
38
38
run : ${{env.SMALLTALK_CI_VM}} ${{env.SMALLTALK_CI_IMAGE}} mutalk --project=${{github.event.repository.name}}
39
39
40
40
- name : diff mutation testing
41
- if : github.event. inputs.mode == 'diff'
41
+ if : inputs.mode == 'diff'
42
42
run : ${{env.SMALLTALK_CI_VM}} ${{env.SMALLTALK_CI_IMAGE}} mutalk --project=${{github.event.repository.name}} --diff
43
43
44
44
- name : Comment PR
You can’t perform that action at this time.
0 commit comments