Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/OrangeLabsMoe/gradle-actions

Not maintained. Use https://github.com/actions/setup-java and https://github.com/gradle/gradle-build-action
https://github.com/OrangeLabsMoe/gradle-actions

actions github github-actions gradle workflow

Last synced: 15 days ago
JSON representation

Not maintained. Use https://github.com/actions/setup-java and https://github.com/gradle/gradle-build-action

Awesome Lists containing this project

README

        

# Github Actions for Gradle

[![GitHubActions](https://img.shields.io/badge/listed%20on-GitHubActions-blue.svg)](https://github-actions.netlify.com/gradle)

Execute [Gradle](https://github.com/gradle/gradle) tasks using wrapper.

## Usage

1. Choose JDK and image:

JDK|Image
---|---
OpenJDK 15|`OrangeLabs-moe/[email protected]`
OpenJDK 14|`OrangeLabs-moe/[email protected]`
OpenJDK 13|`OrangeLabs-moe/[email protected]`
OpenJDK 11|`OrangeLabs-moe/[email protected]`
OpenJDK 8 |`OrangeLabs-moe/[email protected]`
2. By default, `check` task is executed.
If you want to change this behaviour, specify `args` field (see example below).

## Example

An example `test.yml` file to run tests on push and pull requests.

```yaml
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: OrangeLabs-moe/[email protected]
with:
args: test
```