Simple to start. 
Intuitive to extend.

Join thousands who set up tests and deployments in minutes, then scale effortlessly with parallel or multi-environment builds using Travis CI’s developer-friendly syntax.

Simple to start. Intuitive to extend.

Join thousands who set up tests and deployments in minutes, then scale effortlessly with parallel or multi-environment builds using Travis CI’s developer-friendly syntax.
Where developers trust Travis CI with testing and automation
1.

Build your new CI/CD pipeline in no time

Whether starting from scratch or rebuilding a rich ecosystem, get pipelines flowing with preconfigured environments for your language and a minimal syntax with up to 50% less YAML or JSON.
language: python
python:
- "3.7"
- "3.8"
- "3.9"

# Command to install dependencies
install:
- pip install -r requirements.txt
- pip install pytest pytest-cov

# Command to run tests
script:
- pytest --cov=./ tests/

# Specify branches to build
branches:
only:
- main
- develop

# Cache pip dependencies
cache: pip

# Run jobs in parallel
jobs:
include:
- name: "Lint"
python: "3.9"
before_script:
- pip install flake8
script:
- flake8 .

- name: "Docs"
language: python
python:
- "3.7"
- "3.8"
- "3.9"

# Command to install dependencies
install:
- pip install -r requirements.txt
- pip install pytest pytest-cov

# Command to run tests
script:
- pytest --cov=./ tests/

only:
- main
language: node_js
node_js:
- "12"
- "14"
- "16"

# Command to install dependencies
install:
- npm install

# Command to run tests
script:
- npm test

# Specify branches to build
branches:
only:
- main
- develop

# Cache npm dependencies
cache: npm

# Run jobs in parallel
jobs:
include:
- name: "Lint"
node_js: "16"
before_script:
- npm install eslint
script:
- npx eslint .

- name: "Docs"
language: java
jdk:
- openjdk8
- openjdk11

install:
- mvn install

script:
- mvn test

branches:
only:
- main
- develop

cache:
directories:
- $HOME/.m2

jobs:
include:
- name: "Lint"
jdk: openjdk11
script:
- mvn checkstyle:check

- name: "Docs"
jdk: openjdk11
script:
- mvn javadoc:javadoc
language: cpp
compiler:
- g++
- clang++

install:
- sudo apt-get install build-essential cmake

script:
- mkdir build && cd build
- cmake .. && make

branches:
only:
- main
- develop

cache:
directories:
- build

jobs:
include:
- name: "Lint"
compiler: g++
script:
- sudo apt-get install cppcheck && cppcheck .

- name: "Docs"
compiler: g++
script:
- sudo apt-get install doxygen && doxygen Doxyfile
language: php
php:
- "7.3"
- "7.4"
- "8.0"

install:
- composer install

script:
- vendor/bin/phpunit

branches:
only:
- main
- develop

cache:
directories:
- vendor

jobs:
include:
- name: "Lint"
php: "8.0"
script:
- composer require --dev squizlabs/php_codesniffer && vendor/bin/phpcs

- name: "Docs"
php: "8.0"
script:
- composer require --dev phpdocumentor/phpdocumentor && vendor/bin/phpdoc
language: rust
rust:
- stable
- beta
- nightly

install:
- cargo build

script:
- cargo test

branches:
only:
- main
- develop

cache:
directories:
- target

jobs:
include:
- name: "Lint"
rust: stable
script:
- cargo install clippy && cargo clippy

- name: "Docs"
rust: stable
script:
- cargo doc --no-deps
language: go
go:
- "1.15"
- "1.16"
- "1.17"

install:
- go mod download

script:
- go test ./...

branches:
only:
- main
- develop

cache:
directories:
- $GOPATH/pkg/mod

jobs:
include:
- name: "Lint"
go: "1.17"
script:
- go install golang.org/x/lint/golint@latest && golint ./...

- name: "Docs"
go: "1.17"
script:
- go install github.com/swaggo/swag/cmd/swag@latest && swag init
language: ruby
rvm:
- 2.6
- 2.7
- 3.0

install:
- bundle install

script:
- bundle exec rspec

branches:
only:
- main
- develop

cache:
directories:
- vendor/bundle

jobs:
include:
- name: "Lint"
rvm: 3.0
script:
- bundle exec rubocop

- name: "Docs"
rvm: 3.0
script:
- bundle exec yard
1.

Build your new CI/CD pipeline in no time

Whether starting from scratch or rebuilding a rich ecosystem, get pipelines flowing with preconfigured environments for your language and a minimal syntax with up to 50% less YAML or JSON.
language: python
python:
- "3.7"
- "3.8"
- "3.9"

# Command to install dependencies
install:
- pip install -r requirements.txt
- pip install pytest pytest-cov

# Command to run tests
script:
- pytest --cov=./ tests/

# Specify branches to build
branches:
only:
- main
- develop

# Cache pip dependencies
cache: pip

# Run jobs in parallel
jobs:
include:
- name: "Lint"
python: "3.9"
before_script:
- pip install flake8
script:
- flake8 .

- name: "Docs"
language: node_js
node_js:
- "12"
- "14"
- "16"

# Command to install dependencies
install:
- npm install

# Command to run tests
script:
- npm test

# Specify branches to build
branches:
only:
- main
- develop

# Cache npm dependencies
cache: npm

# Run jobs in parallel
jobs:
include:
- name: "Lint"
node_js: "16"
before_script:
- npm install eslint
script:
- npx eslint .

- name: "Docs"
language: java
jdk:
- openjdk8
- openjdk11

install:
- mvn install

script:
- mvn test

branches:
only:
- main
- develop

cache:
directories:
- $HOME/.m2

jobs:
include:
- name: "Lint"
jdk: openjdk11
script:
- mvn checkstyle:check

- name: "Docs"
jdk: openjdk11
script:
- mvn javadoc:javadoc
language: cpp
compiler:
- g++
- clang++

install:
- sudo apt-get install build-essential cmake

script:
- mkdir build && cd build
- cmake .. && make

branches:
only:
- main
- develop

cache:
directories:
- build

jobs:
include:
- name: "Lint"
compiler: g++
script:
- sudo apt-get install cppcheck && cppcheck .

- name: "Docs"
compiler: g++
script:
- sudo apt-get install doxygen && doxygen Doxyfile
language: php
php:
- "7.3"
- "7.4"
- "8.0"

install:
- composer install

script:
- vendor/bin/phpunit

branches:
only:
- main
- develop

cache:
directories:
- vendor

jobs:
include:
- name: "Lint"
php: "8.0"
script:
- composer require --dev squizlabs/php_codesniffer && vendor/bin/phpcs

- name: "Docs"
php: "8.0"
script:
- composer require --dev phpdocumentor/phpdocumentor && vendor/bin/phpdoc
language: rust
rust:
- stable
- beta
- nightly

install:
- cargo build

script:
- cargo test

branches:
only:
- main
- develop

cache:
directories:
- target

jobs:
include:
- name: "Lint"
rust: stable
script:
- cargo install clippy && cargo clippy

- name: "Docs"
rust: stable
script:
- cargo doc --no-deps
language: go
go:
- "1.15"
- "1.16"
- "1.17"

install:
- go mod download

script:
- go test ./...

branches:
only:
- main
- develop

cache:
directories:
- $GOPATH/pkg/mod

jobs:
include:
- name: "Lint"
go: "1.17"
script:
- go install golang.org/x/lint/golint@latest && golint ./...

- name: "Docs"
go: "1.17"
script:
- go install github.com/swaggo/swag/cmd/swag@latest && swag init
language: ruby
rvm:
- 2.6
- 2.7
- 3.0

install:
- bundle install

script:
- bundle exec rspec

branches:
only:
- main
- develop

cache:
directories:
- vendor/bundle

jobs:
include:
- name: "Lint"
rvm: 3.0
script:
- bundle exec rubocop

- name: "Docs"
rvm: 3.0
script:
- bundle exec yard
2.

A precision tool for 
every CI/CD demand

Travis CI elegantly compacts all your testing automation into one minimal Configuration as Code file for a true developer experience. Simple syntax and effortless extensibility.
language: python
python:
- "3.7"
- "3.8"
- "3.9"

# Command to install dependencies
install:
- pip install -r requirements.txt
- pip install pytest pytest-cov

# Command to run tests
script:
- pytest --cov=./ tests/

# Specify branches to build
branches:
only:
- main
- develop

# Cache pip dependencies
cache: pip

# Run jobs in parallel
jobs:
include:
- name: "Lint"
python: "3.9"
before_script:
- pip install flake8
script:
- flake8 .

- name: "Docs"
Run tests against different versions of your runtimes or dependencies—or even multiple languages—for comprehensive automation and absolute quality guarantees on your way to production.
language: python
python:
- "3.8"

services:
- mongodb
- redis
- mysql

env:
- DB=mongodb
- DB=redis
- DB=mysql

before_script:
- if [[ "$DB" == "mongodb" ]]; then mongo mydb_test
--eval 'db.createUser({user:"travis",pwd:"test",roles:
["readWrite"]});'; fi - if [[ "$DB" == "mysql" ]];
then mysql -e 'CREATE DATABASE IF NOT EXISTS mydb_test;
'; fi

script:
- if [[ "$DB" == "mongodb" ]]; then python
test_mongodb.py; fi
- if [[ "$DB" == "redis" ]]; then python
test_redis.py; fi
- if [[ "$DB" == "mysql" ]]; then python
test_mysql.py; fi
Quickly split complex operations, like unit and integration tests, into multiple jobs that give you faster visual feedback on code quality and results—stop waiting on your pipeline to finish and get back to your IDE.
language: python
python:
- "3.8"

# Install dependencies
install:
- pip install -r requirements.txt

# Run tests
script:
- pytest

# Integration with Slack for notifications
notifications:
slack: your-slack-workspace:your-slack-token

# Integration with Codecov for code coverage reports
after_success:
- pip install codecov
- codecov

# Integration with GitHub Pages for documentation deployment
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
on:
branch: main
Enable the must-haves, like build status images, static code analysis, and key management without wasting time on needlessly complex glue. For everything else, the Travis CI API has your back.
language: python
python:
- "3.8"

script:
- python -m pytest tests/

notifications:
email:
recipients:
- dev-team@example.com
on_success: change
on_failure: always

slack:
rooms:
- secure: "encrypted-slack-webhook-url"
on_success: always
on_failure: always
template:
- "Build <%{build_url}|#%{build_number}>
(<%{compare_url}|%{commit}>) of %{repository_slug}
@%{branch} by %{author} %{result} in %{duration}"

webhooks:
urls:
- https://webhook.site/your-unique-id
on_success: change
on_failure: always

irc:
channels:
- "irc.freenode.org#myproject"
template:
- "%{repository} (%{commit}) : %{message}"
- "Build details: %{build_url}"

pushover:
api_key: "pushover-api-key"
users:
- "pushover-user-key"
template: "%{repository} (%{commit}) :
%{message} - %{duration}"

after_failure:
- cat /home/travis/build/your-github-username/
your-repo-name/tests/test-suite.log
Switch on highly customizable notifications to email, Slack, Opsgenie, any webhook destination, and many more. All you need to bring is your API token and as little as two fresh lines of YAML.
language: python
python:
- "3.8"

stages:
- test
- name: deploy
if: branch = main

jobs:
include:
- stage: test
name: "Unit Tests"
script: python -m unittest discover tests/unit

- stage: test
name: "Integration Tests"
script: python -m unittest discover tests/integration

- stage: deploy
name: "Deploy to Production"
script:
- pip install awscli
- aws s3 sync . s3://my-bucket/ --delete

env:
global:
- PYTHONPATH=$PYTHONPATH:$TRAVIS_BUILD_DIR

before_install:
- pip install -r requirements.txt

branches:
only:
- main
- develop

notifications:
email:
on_success: never
on_failure: always
Infinitely organize complex CI/CD pipelines into groups that only run if other parallel jobs have been completed successfully. Catch failures faster or layer in smart conditionals to catch edge cases other CI/CD tools lose track of.
language: generic

jobs:
include:
# Linux builds
- os: linux
arch: amd64
- os: linux
arch: arm64

# macOS builds
- os: osx
osx_image: xcode12.5

# Windows builds
- os: windows

script:
- echo "Running tests on $TRAVIS_OS_NAME $TRAVIS_CPU_ARCH"
- # Add your build and test commands here

notifications:
email: false
Test your code in parallel on more flexible combinations than any other CI/CD tool. Mix-and-match amd64, ppc64le, s390x, arm64, and arm64-graviton2 CPUs with Linux, macOS, and Windows environments to make your builds edge case-free.
3.

The most resilient name in CI/CD

Others commodify CI/CD, building overly complex DevSecOps Platforms. We remain steadfast in our original mission to help developers conquer their CI/CD pipelines faster, more fluently, and, dare we say… with more fun?

Why pay for CI/CD

That’s a tough but fair question. We’re still delivering the simplest and most extensible CI/CD for developers who want precision tools, not bloated platforms. Travis CI uniquely helps you take ownership of code quality, collaborate better with your peers, and take ownership of the results you create together.

A genuine community

Whether you need tips on extending your pipeline or code examples building a custom integration with the API, our community of CI/CD experts always steps up.

Engineering-driven customer support

Our CI/CD experts are here to help. Have a question before you jump in, or want to hear about Travis CI Enterprise?

Our security-forward promises

GDPR and PrivacyShield compliance. Build isolation to prevent interference. Clean VMs with every build. Plus, easy extensibility for you to protect your software supply chain with our HashiCorp Vault integration, collaborator management, scoped credentials, signed artifacts, and much more.
3.

The most resilient name in CI/CD

Others commodify CI/CD, building overly complex DevSecOps Platforms. We remain steadfast in our original mission to help developers conquer their CI/CD pipelines faster, more fluently, and, dare we say… with more fun?

Why pay for CI/CD

That’s a tough but fair question. We’re still delivering the simplest and most extensible CI/CD for developers who want precision tools, not bloated platforms. Travis CI uniquely helps you take ownership of code quality, collaborate better with your peers, and take ownership of the results you create together.

A genuine community

Whether you need tips on extending your pipeline or code examples building a custom integration with the API, our community of CI/CD experts always steps up.

Engineering-driven customer support

Our CI/CD experts are here to help. Have a question before you jump in, or want to hear about Travis CI Enterprise?

Our security-forward promises

GDPR and PrivacyShield compliance. Build isolation to prevent interference. Clean VMs with every build. Plus, easy extensibility for you to protect your software supply chain with our HashiCorp Vault integration, collaborator management, scoped credentials, signed artifacts, and much more.

Simple to start. 
Intuitive to extend.

Developed upon by hundreds of thousands.
© Copyright 2024, All Rights Reserved