Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/OrangeLabsMoe/gradle-actions
- Owner: OrangeLabsMoe
- License: mit
- Archived: true
- Created: 2018-12-09T08:21:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-16T12:33:32.000Z (about 2 years ago)
- Last Synced: 2024-08-07T11:11:13.161Z (3 months ago)
- Topics: actions, github, github-actions, gradle, workflow
- Language: Dockerfile
- Homepage:
- Size: 179 KB
- Stars: 29
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```