forked from docker-library/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
30 lines (27 loc) · 853 Bytes
/
.travis.yml
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
language: go
sudo: false
install:
- mkdir -p "${GOPATH%%:*}/src/github.com/shurcooL/markdownfmt"
- git clone https://github.com/tianon/markdownfmt.git "${GOPATH%%:*}/src/github.com/shurcooL/markdownfmt"
- go get -v github.com/shurcooL/markdownfmt
script:
- files="$(find -name '*.md' -print0 | xargs -0 markdownfmt -l)";
if [ "$files" ]; then
echo >&2 "Need markdownfmt:";
echo >&2 "$files";
echo >&2;
echo "$files" | xargs markdownfmt -d >&2;
exit 1;
fi
- failed='';
for short in */README-short.txt; do
chars="$(echo -n "$(cat "$short")" | wc -m)";
lines="$(cat "$short" | wc -l)";
if [ "$chars" -gt 100 -o "$lines" -gt 1 ]; then
failed+=" $short";
fi
done;
if [ "$failed" ]; then
echo >&2 "Too long (or too many lines):$failed";
exit 1;
fi