Guides for SE student projects »

Using GitHub Actions

GitHub Actions is CI/CD tool integrated into GitHub.

Setting up a custom workflow

In the simplest case, setting up is a matter of adding a .yml file into the [root]\.github\workflows folder (example).

GitHub Actions will run the workflow (as per the .yml file) every time certain project events are triggered (e.g., when a PR is updated, or the master branch is updated).

Resources