Skip to content
This repository has been archived by the owner on Sep 2, 2019. It is now read-only.

Δ:.travis

Andrew T. DeSantis edited this page Dec 24, 2016 · 3 revisions

.travis.yml

Schema

type: object
required: [a, b, c]
properties:
  a: {type: number}
  b: {type: number}
  c: {type: number}

Environment

a: 1
b: 2
c: 3

Template

Δ with (data=None)

dist: trusty

language: generic

os: linux

sudo: false

before_install:
- echo 'before_install'

install:
- echo 'install'

before_script:
- echo 'before_script'

script:
- echo 'script'

after_script:
- echo 'after_script'

Test

a: 1
b: 2
c: 3
Clone this wiki locally