aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 3fa7d7ceb0e8b32c7c9de4359646bfee9d08d051 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
dist: trusty

language: bash

env:
  - PASS_VERSION=1.7
  - PASS_VERSION=master

addons:
  apt:
    sources:
      - debian-sid
    packages:
      - expect
      - oathtool
      - shellcheck

before_script:
  - wget https://git.zx2c4.com/password-store/snapshot/password-store-$PASS_VERSION.tar.xz
  - tar -xvf password-store-$PASS_VERSION.tar.xz
  - ln -s password-store-$PASS_VERSION/src/password-store.sh pass
  - export PATH=$PATH:.
  - export TEST_OPTS="-v"

install: true

script:
  - make lint
  - cd test && make all

notifications:
  email:
    recipients:
      - tadfisher@gmail.com
    on_success: never
    on_failure: always