aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: ed6b706f5edd89ef9b7824f9523c8540501dd45a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dist: trusty

language: bash

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

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

install: true

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