mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-26 09:21:28 +00:00
14 lines
255 B
YAML
14 lines
255 B
YAML
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 :
|