diff options
author | Tad Fisher <tadfisher@gmail.com> | 2017-03-16 15:05:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-16 15:05:59 -0700 |
commit | fa0b88c15374efe45a73a3144dbf0c462a24b8bb (patch) | |
tree | 1a5013c4ec3b240ce958b866a6f5efcc61a7b0c1 | |
parent | 329947aaff5e3cfeb1f6711a69c0bf82dba20a61 (diff) | |
parent | 88e739184d8bbcb67e4706721e52baa4aded91c6 (diff) | |
download | pass-otp-fa0b88c15374efe45a73a3144dbf0c462a24b8bb.tar.gz pass-otp-fa0b88c15374efe45a73a3144dbf0c462a24b8bb.zip |
Merge pull request #13 from tadfisher/travis
Add travis build
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cc85628 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +before_script: + - wget https://git.zx2c4.com/password-store/snapshot/password-store-1.7.tar.xz + - tar -xvf password-store-1.7.tar.xz + - export PATH=$PATH:$PWD/password-store-1.7/src + +install: true + +script: + - make lint + - cd test && make all |