Add travis config

这个提交包含在:
Thom Wiggers 2019-01-16 13:02:57 +01:00
父节点 6a8a9a0bf3
当前提交 34a41163bc
找不到此签名对应的密钥
GPG 密钥 ID: 001BB0A7CE26E363

13
.travis.yml 普通文件
查看文件

@ -0,0 +1,13 @@
language: c
compiler:
- clang
- gcc
script:
- make test-all
- if [[ $(find . -iname *.h -o -iname *.c | xargs clang-format -style=file) ]]; then;
echo "Files need formatting.";
exit 1;
fi;
# vim: set ft=yaml ts=2 sw=2 tw=0 et :