A workflow in a GitHub Actions can be optimized by splitting it into several jobs, which run in parallel by default. Parallel jobs is a great way to improve build times and provide a faster feedback to your development & QA teams. This note shows how to run jobs in parallel in the Github Actions.
github
GitHub Actions: Self-Signed Certificate Error
If in a GitHub Actions workflow you try to check out a repository from an URL with a self-signed certificate or a certificate signed by a non-trusted certificate authority (CA), you will get this error: request to <URL> failed, reason: self signed certificate in certificate chain In this note i will show how to fix […]