<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>travis Archives - Creatronix</title>
	<atom:link href="https://creatronix.de/tag/travis/feed/" rel="self" type="application/rss+xml" />
	<link>https://creatronix.de/tag/travis/</link>
	<description>My adventures in code &#38; business</description>
	<lastBuildDate>Sat, 09 Jul 2022 08:17:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>How to add Travis CI to your github project</title>
		<link>https://creatronix.de/how-to-add-travis-ci-to-your-github-project/</link>
		
		<dc:creator><![CDATA[Jörn]]></dc:creator>
		<pubDate>Fri, 26 Nov 2021 13:42:16 +0000</pubDate>
				<category><![CDATA[DevOps & Automation]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[travis]]></category>
		<category><![CDATA[yaml]]></category>
		<guid isPermaLink="false">https://creatronix.de/?p=4200</guid>

					<description><![CDATA[<p>Travis CI is a nice way to add Continous Integration / Test / Deplyoment to your github project. As long as your project is open source aka not private you can use Travis CI for free (with a limited quota of 10000 minutes) Account Create an account at travis-ci.com  Connect it with your github account&#8230;</p>
<p>The post <a href="https://creatronix.de/how-to-add-travis-ci-to-your-github-project/">How to add Travis CI to your github project</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Travis CI is a nice way to add Continous Integration / Test / Deplyoment to your github project.</p>
<p>As long as your project is open source aka not private you can use Travis CI for free (with a limited quota of 10000 minutes)</p>
<h2>Account</h2>
<p>Create an account at <a href="https://www.travis-ci.com/">travis-ci.com </a></p>
<p>Connect it with your github account</p>
<h2>Configuration</h2>
<p>For enable travis CI in your project you must add a <strong>.travis.yml</strong> file to the root folder. Mind the dot for hidden file!</p>
<p>The content for a python project can look as follows:</p>
<pre><code class="language-python">language: python
python:
  - "3.7"
  - "3.8"
  - "3.9"
  - "3.10"

script: 
  - python -m unittest discover</code></pre>
<p>Under the python tag you can list all versions under which your code shall be executed. If you don&#8217;t provide further information the testing platform is Ubuntu 16.04 Xenial. If you want to run things on Ubuntu 20.04 you can add:</p>
<pre><code class="language-python">dist: focal</code></pre>
<h2>Optional Badge</h2>
<p>You can add a badge to your readme</p>
<pre><code class="language-python">[![Build Status](https://app.travis-ci.com/jboegeholz/easypattern.svg?branch=master)](https://app.travis-ci.com/jboegeholz/easypattern)</code></pre>
<h2>Further Reading</h2>
<p><a href="https://docs.travis-ci.com/user/languages/python/">https://docs.travis-ci.com/user/languages/python/</a></p>
<p>The post <a href="https://creatronix.de/how-to-add-travis-ci-to-your-github-project/">How to add Travis CI to your github project</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
