This is a fork of MrRamych's work, just edited to use java 8
Execute Gradle task using wrapper.
To create action in visual editor use modmuss50/gradle-actions@master repo.
The args represent the task to be executed.
An example main.workflow file to run tests on push.
workflow "Push" {
on = "push"
resolves = ["Build"]
}
action "Build" {
uses = "modmuss50/gradle-actions@master"
args = "build"
}