aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 6a6070ecb9a7968226309db7d0d661a5ceb38a96 (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
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