mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-12-03 04:38:36 -05:00
14 lines
303 B
YAML
Executable File
14 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
|