Skip to content

Commit

Permalink
Update mutalk-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep authored Jul 5, 2024
1 parent b936266 commit fa29a6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/mutalk-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
inputs:
mode:
description: 'modes: full (run on all project), diff (run on the last commit diff)'
default: 'diff'
default: 'full'
type: string

jobs:
Expand All @@ -34,11 +34,11 @@ jobs:
shell: bash

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

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

- name: Comment PR
Expand Down

0 comments on commit fa29a6a

Please sign in to comment.