13 lines
297 B
YAML
13 lines
297 B
YAML
|
# This is the YML file that governs the CI builds at CircleCI.com
|
||
|
# The CI is used only for style-checking at this moment.
|
||
|
|
||
|
|
||
|
dependencies:
|
||
|
pre:
|
||
|
- sudo apt-get install lua5.1
|
||
|
|
||
|
test:
|
||
|
override:
|
||
|
- cd src && find . -name \*.cpp -or -name \*.h > AllFiles.lst
|
||
|
- cd src && lua CheckBasicStyle.lua
|