Push event #1 failed

  • Ran for
  • Total time
  • New branch build
language: go
go: 1.10.x

install: skip

jobs:
  include:
    - stage: test
      script: echo "this is a test"
    - # stage name not required, will continue to use `test`
      script: ./test 2
    - stage: test
      script: echo "we deploy here"
Build Config
{
  "go": "1.10.x",
  "jobs": {
    "include": [
      {
        "stage": "test",
        "script": "echo \"this is a test\""
      },
      {
        "script": "./test 2"
      },
      {
        "stage": "test",
        "script": "echo \"we deploy here\""
      }
    ]
  },
  "install": "skip",
  "language": "go"
}