lint: temp fix

This commit is contained in:
Ryan 2022-04-15 03:41:03 +02:00
parent 4f799e784b
commit fb2a2bcfa1
2 changed files with 2 additions and 2 deletions

View File

@ -425,7 +425,7 @@ const (
StepTypeUsesAndRun
//// StepTypeMissingRun is for invalid steps that specify `shell` key but not `run`
//StepTypeMissingRun
// StepTypeMissingRun
)
// Type returns the type of the step

View File

@ -93,7 +93,7 @@ func TestReadWorkflow_StepsTypes(t *testing.T) {
w := readWorkflow(t, "matrix/push.yml")
assert.Equal(t, StepTypeRun, w.Jobs["test"].Steps[0].Type())
//w = readWorkflow(t, "step-uses-and-run/push.yml")
// w = readWorkflow(t, "step-uses-and-run/push.yml")
//assert.Equal(t, StepTypeMissingRun, w.Jobs["test"].Steps[0].Type())
w = readWorkflow(t, "remote-action-docker/push.yml")