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

https://github.com/gatoreducator/gatorgradle-action

GitHub Action to run GatorGradle
https://github.com/gatoreducator/gatorgradle-action

Last synced: 5 months ago
JSON representation

GitHub Action to run GatorGradle

Awesome Lists containing this project

README

          

# gatorgradle-action

This GitHub Action runs GatorGradle.

## Usage

Basic workflow to run GatorGradle on every push:

```yaml
name: Grade
on: [push]
jobs:
grade:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run GatorGradle
uses: GatorEducator/gatorgradle-action@v1
```