We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eac7dcd commit ed26a9cCopy full SHA for ed26a9c
.travis.yml
@@ -1,8 +1,17 @@
1
+language: java
2
+
3
env:
4
global:
5
- CHECKER=http://validator.w3.org/nu/
6
- FILES=$(find . -name "*.html")
7
- OUTPUT=$(for file in $FILES; do curl -s -F out=gnu -F doc=@$file $CHECKER; done)
8
9
script:
10
+ - git clone https://github.com/validator/build.git build
11
+ - python ./build/build.py checkout
12
+ - python ./build/build.py dldeps test
13
+ - python ./build/build.py build; python ./build/build.py build
14
+ - python ./build/build.py test
15
+ - python ./build/build.py jar
16
+ - java -jar ./build/vnu/vnu.jar $FILES
17
- if [ -n "$OUTPUT" ]; then printf "$OUTPUT"; exit 1; fi
0 commit comments