-
[Sưu tầm] GitHub Actions for iOS projects
Sưu tầm https://leenarts.net/2020/02/12/github-actions-for-ios-projects/ When building an iOS project, you probably want to have some form of continuous integration working on your codebase. Continuous integration Continuous integration (CI) is a process where each code change results in certain checks to be performed. It is best to automate this. Continuous develivery/deployment On top of integration, you most likely want to make sure your code changes become available to your users as well. To help in this process it is good to perform Continuous delivery (CD). CD is the process o automatically deploying your code changes when all checks have passed. You need to run your CI/CD somewhere In 2019 Github made GitHub…