13 lines
303 B
YAML
Executable file
13 lines
303 B
YAML
Executable file
language: c
|
|
|
|
# Setting sudo access to false will let Travis CI use containers
|
|
# rather than VMs to run the tests. For more details see:
|
|
# https://docs.travis-ci.com/user/reference/overview/
|
|
sudo: false
|
|
|
|
script:
|
|
- cd tests
|
|
- ./unittest.sh
|
|
- cd ../examples
|
|
- ./cpptest.sh
|
|
- git diff --exit-code
|