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
- Host: GitHub
- URL: https://github.com/gatoreducator/gatorgradle-action
- Owner: GatorEducator
- License: gpl-3.0
- Created: 2022-01-19T17:19:43.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-25T20:48:59.000Z (about 4 years ago)
- Last Synced: 2025-10-29T23:46:23.078Z (9 months ago)
- Size: 18.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```