GitHub Action Explained through Automation of Language Detection

What are GitHub Actions? GitHub Actions is a nice feature supported by GitHub that developers can use to automate a wide range of tasks within their repository. One can define workflows to build, test and deploy code as soon as specific events occur inside the GitHub repository.

GitHub Action Explained through Automation of Language Detection

What are GitHub Actions?

GitHub Actions is a nice feature supported by GitHub that developers can use to automate wide range of tasks within their repository. One can define workflows to build, test and deploy code as soon as specific events occur inside the GitHub repository. A workflow e.g., uploading a file to S3 bucket from local consist of several consecutive tasks which need to be done one after another such that the file lands into the S3 bucket. Such workflows, we can define inside a directory named .github/workflows. In other words, we can define the steps and conditions under which certain tasks should be executed.

Continue reading on Medium »