-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.travis.yml
More file actions
28 lines (26 loc) · 693 Bytes
/
.travis.yml
File metadata and controls
28 lines (26 loc) · 693 Bytes
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
language: python
cache: bundler
python:
- "3.6"
install:
# Install the latest release of Vale:
- wget https://github.com/errata-ai/vale/releases/download/v2.0.0-beta.2/vale_2.0.0-beta.2_Linux_64-bit.tar.gz
- mkdir bin && tar -xvzf vale_2.0.0-beta.2_Linux_64-bit.tar.gz -C bin
- export PATH=./bin:"$PATH"
- bundle install --jobs=3
- pip install yamllint
- pip install markdata
- pip install pyyaml
- pip install docutils
before_script:
- yamllint -c '.yamllint.yml' write-good
script:
- cucumber
- zip -r write-good.zip write-good -x "*.DS_Store"
deploy:
provider: releases
api_key: $GITHUB_TOKEN
file: write-good.zip
skip_cleanup: true
on:
tags: true