Skip to content

Fix #14

7987a6a
Select commit
Loading
Failed to load commit list.
Open

Fix #14 #15

Fix #14
7987a6a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Jul 16, 2025 in 18s

Build Failed

The build failed. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #15 Fix #14.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Xenial)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "env": [
    "jobs={:TERRAFORM_VERSION=>\"1.0.2\", :TERRAFORM_DOCS_VERSION=>\"0.16.0\"}"
  ],
  "install": [
    "pip install pre-commit",
    "curl -Lo /tmp/terraform.zip \"https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip\"",
    "unzip /tmp/terraform.zip -d /tmp/",
    "mv /tmp/terraform ${HOME}/bin/terraform",
    "curl -Lo /tmp/terraform-docs.tar.gz \"https://github.com/terraform-docs/terraform-docs/releases/download/v${TERRAFORM_DOCS_VERSION}/terraform-docs-v${TERRAFORM_DOCS_VERSION}-linux-amd64.tar.gz\"",
    "tar -xzf /tmp/terraform-docs.tar.gz -C /tmp/",
    "mv /tmp/terraform-docs ${HOME}/bin/terraform-docs"
  ],
  "jobs": {
    "include": [
      {
        "stage": "lint",
        "name": "pre-commit hooks",
        "script": [
          "pre-commit run --all-files --show-diff-on-failure"
        ]
      }
    ]
  },
  "cache": {
    "pip": true,
    "directories": [
      "$HOME/.cache/pre-commit"
    ]
  }
}