<?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>github Archives - Creatronix</title>
	<atom:link href="https://creatronix.de/tag/github/feed/" rel="self" type="application/rss+xml" />
	<link>https://creatronix.de/tag/github/</link>
	<description>My adventures in code &#38; business</description>
	<lastBuildDate>Wed, 17 Aug 2022 11:57:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.1</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>
		<item>
		<title>Use github with Personal access tokens from Android Studio</title>
		<link>https://creatronix.de/use-github-with-tokens/</link>
		
		<dc:creator><![CDATA[Jörn]]></dc:creator>
		<pubDate>Fri, 14 May 2021 11:32:48 +0000</pubDate>
				<category><![CDATA[Android & iOS development]]></category>
		<category><![CDATA[android studio]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[token]]></category>
		<guid isPermaLink="false">https://creatronix.de/?p=3616</guid>

					<description><![CDATA[<p>github disabled the support of user/pw authentication for acessing the platform from external tools like e.g. PyCharm or Android Studio Instead you need an access token Here is how you do it: Sign-in into github Go to https://github.com/settings/tokens Generate new token enable &#8220;repo&#8221;, &#8220;admin:org&#8221; &#8220;gist&#8221; Now you can use the token from within Android Studio&#8230;</p>
<p>The post <a href="https://creatronix.de/use-github-with-tokens/">Use github with Personal access tokens from Android Studio</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>github disabled the support of user/pw authentication for acessing the platform from external tools like e.g. PyCharm or Android Studio</p>
<p>Instead you need an access token</p>
<p>Here is how you do it:</p>
<ul>
<li><a href="https://github.com/login">Sign-in into github</a></li>
<li>Go to <a href="https://github.com/settings/tokens">https://github.com/settings/tokens</a></li>
<li>Generate new token</li>
<li><span class="comment-copy">enable </span>
<ul>
<li><span class="comment-copy">&#8220;repo&#8221;,</span></li>
<li><span class="comment-copy">&#8220;admin:org&#8221; </span></li>
<li><span class="comment-copy">&#8220;gist&#8221;</span></li>
</ul>
</li>
</ul>
<p>Now you can use the token from within Android Studio or any JetBrains IntelliJ based IDE.</p>
<p>The post <a href="https://creatronix.de/use-github-with-tokens/">Use github with Personal access tokens from Android Studio</a> appeared first on <a href="https://creatronix.de">Creatronix</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
