To experience the forked Github project by Travis?

If I create a project and make changes to it, how can I let Travis build the project?

I forked it, it will wait until I make a pull request to give me the build status, but do I have to check it myself to make a pull request? Because the icon (build | walkthrough) follows the original project, not a forked one.

+5
source share
1 answer

Go to travis-ci.org , log in (using your github account), and then follow the following simple guide:

Include your projects below by clicking the switch, add .travis.yml to your project and click on the new commit on GitHub.

This will lead to the creation of your own travis, regardless of the original project, and you do not have to wait until any traction requests are combined.

You will find the specifications for .travis.yml at docs.travis-ci.com if you want to make further changes since you have forked a project that already contains the one on which you are all set up.

Once all this is configured, you can adapt the URL in the readme.md file to point to your travis assembly

+6
source

Source: https://habr.com/ru/post/1204573/


All Articles