https://kotlinlang.org logo
#feed
Title
# feed
j

jmfayard

09/17/2020, 6:22 AM
Hello friends Here is tutorial of mine to help you get started with continuous integration. It's for you if you write unit tests have no CI pipeline to run them when you
git push
I show a simple way you can fix that with GitHub Actions + Gradle https://dev.to/jmfayard/how-do-i-setup-github-actions-for-my-gradle-or-android-project-3eal
👍 1
p

PHaroZ

09/17/2020, 6:54 AM
I never imagine that it was so simple to initiate a CI pipeline, without any external service or resource. Thanks, I will implement it soon.
👍 1
s

satyan

09/17/2020, 7:25 AM
Github Action is the external service here 😜 The same way TravisCI, CircleCI or Jenkins would be the external service. They are just relying on their dominant position to provide a built-in CI service 🤷
t

tddmonkey

09/17/2020, 7:33 AM
There are still people who don’t use CI? 😮
😂 1
s

satyan

09/17/2020, 7:58 AM
Testing = doubting 🧌
❤️ 1
😆 1
j

jmfayard

09/17/2020, 8:09 AM
There are still people who don’t use CI? @tddmonkey
Most of them? I opened 10 recently updated apps at https://github.com/topics/android-app?o=desc&s=updated Only 2 of 10 were using a CI pipeline
p

PHaroZ

09/17/2020, 8:37 AM
There are still people who don’t use CI? @tddmonkey
the ones who work alone on their project and run their tests at dev time & compile time 😉
t

tddmonkey

09/17/2020, 8:37 AM
Ha, tbf I do that on some of my projects too.. I guess I meant doing it on commercial/team projects
c

christophsturm

09/17/2020, 3:15 PM
even on my personal projects i run tests on ci to make sure it works not only on my system, and that it works exactly like it is in git and no files are missing etc
👍 2
8 Views