Reflect manual test scenario for containerMode=kubernetes to E2E (#1588)

With this my semi-automatic E2E manual testing becomes even easier :)
This commit is contained in:
Yusuke Kuoka
2022-06-30 09:09:58 +09:00
committed by GitHub
parent cda10fd243
commit dc4f116bda
2 changed files with 52 additions and 28 deletions

View File

@@ -1,7 +1,7 @@
package testing
const (
ActionsCheckoutV2 = "actions/checkout@v2"
ActionsCheckout = "actions/checkout@v3"
)
type Workflow struct {
@@ -30,8 +30,9 @@ type InputSpec struct {
}
type Job struct {
RunsOn string `json:"runs-on"`
Steps []Step `json:"steps"`
RunsOn string `json:"runs-on"`
Container string `json:"container,omitempty"`
Steps []Step `json:"steps"`
}
type Step struct {