What's the point of .travis.yml?

In the reference sketch repo, there’s a file called .travis.yml. What’s its purpose? Can I safely remove it?

It’s for automated testing, each commit to the repo is ran through a series of tests (mostly ensuring that things compile, and conform to our coding style). You can safely remove it from your fork if you’re not going to use Travis.

1 Like