# Travis Integration https://api-docs.lumar.io/docs/protect/ci/ci-travis-integration In order to integrate with Travis, you can either use our [CLI Tools](/docs/protect/ci/ci-cli-tools.md) or our [Shell Scripts](/docs/protect/ci/ci-shell-scripts.md): ## CLI Tools Download the CLI Tools and use the following configuration in your Travis pipeline: ```yaml matrix: include: - language: bash os: linux dist: bionic sudo: false script: ./deepcrawl-test-linux ``` ## Shell Scripts Download the Shell Scripts and use the following configuration in your Travis pipeline: ```yaml matrix: include: - language: bash os: linux dist: bionic sudo: false addons: apt: packages: - jq script: ./ci.sh ```