How to setup CI / CD for the Frappe Applications using Github Actions.
Sure! Let's go through each part of this GitHub Actions workflow file to understand what it does.
Name of the Workflow
name: CI
This defines the name of the workflow as "CI" (Continuous Integration).
Events that Trigger the Workflow
on:
push:
...
frappedevops.hashnode.dev4 min read