Skip to content

Commit 912e74d

Browse files
committed
Add travis.yml
1 parent 90cb272 commit 912e74d

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: go
2+
install: go get github.com/koron/nvcheck
3+
script: sh ./tools/nvcheck.sh

tools/nvcheck.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/sh
2+
3+
set -e
4+
5+
find $1 -name "*.jax" -print | while read line; do
6+
echo Checking $line
7+
nvcheck $line
8+
done

0 commit comments

Comments
 (0)