Push event #287 failed

  • Ran for
  • Total time
travis-ci/travis-tests:.travis.yml@5355d55
os: linux

jobs:
  include:
    - dist: focal
      language: ruby
      script: ruby hello.rb
    - dist: focal
      language: node_js
      script: node hello.js
    - dist: focal
      language: python
      script: python hello.py

    - dist: bionic
      language: ruby
      script: ruby hello.rb
    - dist: bionic
      language: node_js
      script: node hello.js
    - dist: bionic
      language: python
      script: python hello.py
Build Config
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "jobs": {
    "include": [
      {
        "dist": "focal",
        "language": "ruby",
        "script": [
          "ruby hello.rb"
        ]
      },
      {
        "dist": "focal",
        "language": "node_js",
        "script": [
          "node hello.js"
        ]
      },
      {
        "dist": "focal",
        "language": "python",
        "script": [
          "python hello.py"
        ]
      },
      {
        "dist": "bionic",
        "language": "ruby",
        "script": [
          "ruby hello.rb"
        ]
      },
      {
        "dist": "bionic",
        "language": "node_js",
        "script": [
          "node hello.js"
        ]
      },
      {
        "dist": "bionic",
        "language": "python",
        "script": [
          "python hello.py"
        ]
      }
    ]
  }
}