3/x: ๐‚๐ซ๐จ๐‹๐ข๐ง๐ ๐จ: pipelines

Written by  on August 9, 2026 

In a feature-driven world, support-software rarely gets the stage it deserves. Ask a stakeholder what a pipeline is and get ๐Ÿ™ƒ .. which is sad. Because how else do you want to verify it you built it correctly?

Anyway: automated testing and linting is always part of my process. From day one – not in the final stages. Of course, you should have at least a tiny build-able fragment of your project, but the earlier you add #automation, the better. I usually run with local and continuous integration pipelines.
This project is hosted on GitHub, so I went with GitHub actions for the CI. We have 20 named pipeline stages which form a single commit gate. “Cheap” ones like linting and format checks run before the more “expensive” ones, which need a build. 129 automated tests are done, which cover 98% of the code. Together with the 30 unit and widget tests and a real-target integration suite we have fitting coverage. The local version runs as pre-commit hook, the GitHub one is also capable of doing the releases. And so far I made six public releases.
Also, Dependabot is integrated, so if I would miss the release of any dependency, then this neat little bot would create an automatic PR (pull-request) for me. ๐Ÿฆโ€โฌ›

The pipeline turns engineering expectations into executable policy. ๐ˆ๐ญ ๐ฐ๐จ๐ง’๐ญ ๐›๐ฎ๐ข๐ฅ๐ ๐จ๐ซ ๐ฉ๐š๐ฌ๐ฌ, ๐ฒ๐จ๐ฎ ๐œ๐š๐ง’๐ญ ๐ซ๐ž๐ฅ๐ž๐š๐ฌ๐ž. ๐’๐ข๐ฆ๐ฉ๐ฅ๐ž ๐š๐ฌ ๐ญ๐ก๐š๐ญ.

If you want to give this Croatian-German-language learning app a try, download the package from https://github.com/marcelpetrick/CroLingo/releases/tag/v0.0.63 and run it on your Android phone.
Have fun and enjoy learning!

I’ll keep you updated on what comes next. ๐Ÿ‡ญ๐Ÿ‡ท โค๏ธ ๐Ÿ‡ฉ๐Ÿ‡ช

 

#continuousIntegration #continuousDeployment #pipelines #automation

Category : Android