/gradle-actions

Github Actions for Gradle

Primary LanguageDockerfileMIT LicenseMIT

Github Actions for Gradle

GitHubActions

Execute Gradle task using wrapper.

Usage

To create action in visual editor use MrRamych/gradle-actions@master repo.

The args represent the task to be executed.

Example

An example main.workflow file to run tests on push.

workflow "Push" {
  on = "push"
  resolves = ["Test"]
}

action "Test" {
  uses = "MrRamych/gradle-actions@master"
  args = "test"
}